Jump to content
php.lv forumi

Problemas ar is_readable


GXC

Recommended Posts

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)

Link to comment
Share on other sites

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);
}

Link to comment
Share on other sites

×
×
  • Create New...