Tuesday, July 30th, 2002
PHP: Strings - Manual:
$beer = ‘Heineken’;
echo “$beer’s taste is great”;
echo “He drunk some ${beer}s”; // works
$fruits = array( ’strawberry’ => ‘red’ , ‘banana’ => ‘yellow’ );
echo “A banana is $fruits[banana].”;
Oh-oh, man…reading up on PHP makes me pine for the
old days of Perl. Look how easy it is to print; and hashes everywhere: wonderful, beautifully fast, […]
Popularity: 1% [?]
Read Full Post
