I'm not sure why I can't get this to work: A super simple function that just needs to return true or false:
<?php
function check_for_header_images() {
if ( file_exists('path/to/file') && file_exists('path/to/file'))
return true;
}
?>
Bu doğru değil dönecektir:
<?php
if(check_for_header_images()) {
// do stuff
}
?>
... Şeyler yapmaz:
<?php
if(!check_for_header_images()) {
// do stuff
}
?>
... Şeyler yapar.
Ben fonksiyonu için kurdum koşullar return true GEREKMEKTEDİR. Ben tam beyanı ve eğer aynı sadece bu yapmak alırsak:
<?php
if ( file_exists('path/to/file') && file_exists('path/to/file')) {
//do stuff
}
?>
It works. Do I just not understand how to write a function?