Home  Downloads  Forum  Quiz
 
 
Learn PHP By Examples
 
ABSOLUTE
 
Example 1 : gives the absolute value
 
<?php
echo $abs abs(-4.2)."<br />"
echo 
$abs2 abs(5)."<br />";   
echo 
$abs3 abs(-5)."<br />";   
?>
Example 2 : download the file with your content
 
<?php
$content 
"hi how r u";
file_put_contents('data.txt',$content);
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"data.txt\"");
readfile('data.txt');
?>
Next