0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PHPでbool値をechoするとtrueは1に、falseは出力されない

Posted at

とあるシステムのテンプレートをみてたら下記の様にbool値をecho してるプログラムを発見しました。

<?php
// bool値
$showDetailForm = $historyError || $linkError;
?>
<div ng-init="showDetailForm='<?php echo $showDetailForm; ?>'">

bool値をechoしようと思ったことがなかったので、これどうなるんだろうと思って実験してみました。

$true = true;
echo $true; // 1
$false = false;
echo $false; // 空

結果は trueなら 1 false なら空となりました。

自分では使うコトないだろうけど、コード読んでてまた「あれ?bool値のecho?」ってなりそうな気がしたのでメモっときます^^;

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?