Heim  >  Artikel  >  Backend-Entwicklung  >  一道简单的小题目,该如何解决

一道简单的小题目,该如何解决

WBOY
WBOYOriginal
2016-06-13 13:27:03931Durchsuche

一道简单的小题目
填空题,输出hello world.
之前没做过,有那么眯眯意思,方法也很多。
目前想到的是短答案有14位,不知还能不能再简些哈
各位玩玩


if(_____){
  echo "hello ";
}else{
  echo "world.";
}

------解决方案--------------------

PHP code
if(!print('hello ')){
  echo "hello ";
}else{
  echo "world.";
}
<br><font color="#e78608">------解决方案--------------------</font><br>
PHP code

if(true){
     echo "hello";
}
else{
     echo "world";
}
<br><font color="#e78608">------解决方案--------------------</font><br>
探讨

#1呵呵,估计没什么其它好方法拉

if(die('hello world.'))
if(1)echo'hello ';if(0)

------解决方案--------------------
探讨

PHP code
if(!print('hello ')){
echo "hello ";
}else{
echo "world.";
}
楼主想到的是不是这个呢 呵呵~

------解决方案--------------------
闲,

我有个建议,版主应该收集 每一个php 爱好者的 php框架,专门出一帖,详细阐述具体使用方法 特点

效率 开发方式。。等等等等
------解决方案--------------------
哦,类似于sql注入啊,受教了,确实
------解决方案--------------------
楼主高才,我也想到了~~
------解决方案--------------------
探讨

就是填 1)echo'hello ';if(0 啊

最后代码
if(1)echo'hello ';if(0)
{
echo "hello ";
}else{
echo "world.";
}


同样输出 hello world.了

引用:

引用:

#1呵呵,估计没什么其它好方法拉

if(die('hel……
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel: php面向对象技能 Nächster Artikel: 关于php获取变量有关问题