...čo vracia práve vtedy, keď je prázdny...
Kód:
<?php
var_dump(!$string); // bool(true), negovana nedefinovana premenna
$string = '';
var_dump(!$string); // bool(true), negovany prazdny retazec
$string = 'text';
var_dump(!$string); // bool(false), negovany neprazdny retazec
?>
_________________
A. S. Tanenbaum píše:
The terms LF, MF, and HF refer to low, medium, and high frequency, respectively. Clearly, when the names were assigned, nobody expected to go above 10 MHz, so the higher bands were later named the Very, Ultra, Super, Extremely, and Tremendously High Frequency bands. Beyond that there are no names, but Incredibly, Astonishingly, and Prodigiously high frequency (IHF, AHF, and PHF) would sound nice.