Using the apostrophe for PHP associative array element's name
- by Haskella
Hi I've been trying to figure out how to put something like Joe's Fruits into a PHP array something like this:
<?php
$arr = array(
'Fruitland' => '3ddlskdf3',
'Joe's Fruits' => 'dddfdfer3',
);
?>
Using the above for example (stackoverflow's code color should tell you this by now), the array will take it as 'Joe' between the two apostrophes instead of the whole 'Joe's Fruits' is there any way I can do this without just calling it 'Joes Fruits'?