Check unlink() or unset()
Category Archives: PHP
copy
It can be used to copy file
Example
<?php
copy(“test.txt”,”test.txt.new”) or die(“Failed to copy the file”);
?>
clearstatcache
It can be used to clears file status cache
Example
<?php
clearstatcache();
?>
chown
It can be used to change file ownership
Example
<?php
chown(“test.txt”, “phpcodez”);
?>
chmod
It can be used to change file permission
Example
<?php
chmod(“/var/www/test/”, 0777);
chmod(“/var/www/test/”, “u+rwx,go+rx”);
?>
chgrp
It can be used to change file group
Example
<?php
$file = ‘test.txt’;
chgrp($file,”php”);
?>
basename
It returns trailing name component of path
Example
<?php
echo basename(“/var/www/php”);
?>
Output
php
usort
Example
<?php
function func($a, $b)
{
if ($a == $b) {
return 0;
}
return ($a < $b) ? -1 : 1;
}
echo “<pre>”;
$array = array(1, 7, 5, 8, 4);
usort($array, “func”);
print_r($array);
?>
Output
Array
(
[0] => 1
[1] => 4
[2] => 5
[3] => 7
[4] => 8
)
uksort
Example
<?php
function func($a, $b)
{
if ($a == $b) {
return 0;
}
return ($a < $b) ? -1 : 1;
}
echo “<pre>”;
$array = array(1=>”PHP”, 7=>”ASP”, 5=>”JS”, 8=>”AS”, 4=>”JSP”);
uksort($array, “func”);
print_r($array);
?>
Output
Array
(
[1] => PHP
[4] => JSP
[5] => JS
[7] => ASP
[8] => AS
)
uasort
Example
<?php
echo “<pre>”;
$lan = array(“PHP”,”ASP”,”JSP”);
uasort($lan);
print_r($lan);
?>
Output
Array
(
[0] => PHP
[1] => ASP
[2] => JSP
)