Addiction and Treatment Statistics for Chandler, Arizona
June 25, 2020
There are a variety of reasons to consider treatment for addiction in Chandler or even moving to the city after completing a treatment program. Imagine living in an urban setting that is comfortably warm throughout the entire year. Imagine winters that never get cold. Along with the warm weather conditions, Chandler offers the amenities that are available in a large city.
Airport
Since Chandler is near other major cities, there are several airports within a reasonable distance from the center of town. The closest airport is Chandler Muni, which is slightly more than 3 miles to the south-east from downtown. Stellar Airpark-P19 is around 4 miles to the west of town and Gila River Memorial Airport is about 6 miles to the south-west.
Weather Conditions
The weather conditions in Chandler are warm and comfortable throughout the entire year. According to Weather.com, the average temperatures during the winter months range from 40 to 85 degrees Fahrenheit. Although the lows can get cold, the days will usually warm up to roughly 65 to 70 degrees in the winter. During the summer, Weather.com reports that the temperatures can range from a low of 70 to a high of 106 degrees Fahrenheit. For individuals who enjoy warm and hot temperatures, Chandler is a good place to live or go for rehabilitation.
Drug Rehab
As a relatively large city with a population that is almost 250,000 according to City Data, there are treatment programs that can help with addiction and rehabilitation. Whether you or a loved one is planning to enter a treatment program for the first time or is considering a move to the city for a different environment after completing treatment, there are options to help maintain a drug and alcohol-free lifestyle.
Lodging
Finding a hotel or other lodging solutions is easy in a large city. Chandler has several hotels that are available for individuals who are visiting a loved one who is in a treatment program or who is considering a move to the area.
The Hilton Phoenix Chandler or the Sheraton Wild Horse Pass Resort and Spa are good choices for a relaxing experience. For more budget-friendly options, the Hampton Inn & Suites at the Phoenix Chandler Fashion Center or the Comfort Inn Chandler are good choices.
Employment
According to City Data, Chandler has a wide array of employment opportunities in several industries. It is possible to find positions in computer and electronics, construction, professional services, medicine, food services, financial services and education services. Since there is a large population and it is an urban setting, the opportunities for employment are available in several industries and areas of expertise.
Recovering from addiction requires large changes and sometimes it can help to move to a new city or town. For individuals who are looking for a comfortable environment and urban amenities, Chandler may be the best place to reach recovery goals or offer support to a loved one.
where('url', $stateSlug)->find_one();
if (!$state) {
$err['state'] = "Sorry, we couldn't find that state.";
$is404 = true;
}
}
if ($requestCity && $state) {
$city = $state->city()->where('url', $requestCity)->find_one();
if (!$city) {
$err['city'] = "Sorry, we couldn't find that city.";
$is404 = true;
}
}
if ($requestLocation && $city ) {
/* Fetch Location Only under primary Lookup*/
if($lookup=='rehab-centers')
$location = $city->location()->where('url', $requestLocation)->find_one();
if (!$location) {
$err['location'] = "Sorry, we couldn't find that location.";
$is404 = true;
}
/* Special Header Addons - Locations Under Sub Lookups*/
if($lookup!='rehab-centers')
$sublookup_head = true;
}
/***
* Let's work backwards with what we have.
***/
// City Table Column Selector :: Num Locations by Lookup
switch($lookup){
case 'inpatient-rehab-centers' : $col = 'num_inpa'; break;
default : $col = 'num_locations';
}
if ($location) {
$attributes['S'] = $attributes['T'] = $attributes['D'] = $attributes['P'] = array();
foreach ($location->attribute()->find_many() as $attribute) {
$attributes[$attribute->type][] = $attribute;
}
$mapAddress = urlencode($location->location_street1 . ' ' . $location->location_street2 . ' ' . $city->name . ' ' . $state->abbr);
if ($dataOnly) {
// Reserved for location data-only
} else {
include_once 'templates/location.php';
}
}
else if ($city) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$locations = ORM::for_table('location')
->raw_query('SELECT location.*
FROM location JOIN attribute_location ON location.id = attribute_location.location_id
WHERE location.city_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY location.id', array($city->id))
->find_many();
}
elseif ($lookupGroup) {
$built_re_state = explode('-'.$requestLookup,$requestState)[0];
$build_redirect = '/rehab-centers/'.$built_re_state.'-rehab-centers/'.$requestCity.'/';
header("HTTP/1.1 301 Moved Permanently");
header('Location: https://www.rehabcenter.net' . $build_redirect);
exit();
// Standard lookups
//$locations = ORM::for_table('location')->where('location.city_id', $city->id)->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('location.id')->find_many();
}
else {
// Show all rehab centers
$locations = $city->location()->find_many();
}
/* Show City Page Only if # Segments exist*/
if(count($segments)==3&&!$is404){
if ($dataOnly) {
// Reserved for city data-only
include_once 'templates/city-data.php';
} else {
include_once 'templates/city.php';
}
}
}elseif ($state) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$cities = ORM::for_table('city')
->raw_query('SELECT city.*
FROM city
JOIN location ON city.id = location.city_id
JOIN attribute_location ON location.id = attribute_location.location_id
WHERE city.state_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY city.id', array($state->id))
->find_many();
}
else if ($lookupGroup) {
$cities = ORM::for_table('city')->select('city.*')->where('city.state_id', $state->id)->join('location', array('city.id', '=', 'location.city_id'))->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('city.id')->find_many();
}
else {
$cities = $state->city()->find_many();
}
// Let's make sure we only have # segments on the URL array(3)
if(count($segments)==2){
if ($dataOnly) {
include_once 'templates/state-data.php';
} else {
include_once 'templates/state.php';
}
}
}
else if ($lookup&&!$is404) {
$states = Model::factory('State')->find_many();
if ($dataOnly&&!$is404) {
include_once 'templates/lookup-data.php';
} else {
include_once 'templates/lookup.php';
}
}
else {
$is404 = true;
header('HTTP/1.0 404 Not Found');
}
// $endTime = microtime(true);
//echo '';
?>