Learning PHP and MySQL

Example 04-02 Casting a variable

<?php
$test
=1234;
$test_string=(string)$test;
?>

Posted by on 08/03 at 08:08 AM

Next entry: Example 04-03 Lefthand expressions

Previous entry: Example 04-01 Sum of values

<< Back to main