Jump to content
php.lv forumi

Problemas ar is_readable


Recommended Posts

Posted

sveiki, doma ir uzraxtit skriptu kas parbauditu vai tads fails eksiste un ja nee tad izveidot jaunu. Nu es uzraxtiju shadu:

if(is_readable($dbfile))
{
// Do nothing
}
else
{
$fnew = fopen("$dbfile", "w+");
flock($fnew, 1);
}

 

Vinsh man izgatavo jaunu jebkura gadijuma(ja tads fails jau ir vai nav)

Posted

un mazāk būs jāraksta, ja rakstīsi šādi:

 

if(!is_file($dbfile))
{
$fnew = fopen("$dbfile", "w+");
flock($fnew, 1); // shitas uz win neies, pasham jaataisa alternatiiva
// taaalaak neaimzirsti arii fclose($fnew);
}

Posted

beigas sataisiju ar shitadu:

 

<?
// Create New DB if the DB not found
if (!file_exists("$dbfile")) {
$fnew = fopen("$dbfile", "w+");
flock($fnew, 1);
}
else
{
// Do nothing
}
?>

×
×
  • Create New...