我刚开始使用php 我想检查一个变量的值 如果它不是null,它会将视频返回给我 我要编辑的部分 $ response ['type']
$post=$posts[$i];
$response['id']=$post['id'];
$response['title']=strip_tags($post['title']);
$response['content']=str_replace("\n","",strip_tags($post['content']));
$response['date']=explode(" ",$post['date'])[0];
$response['video']=$post['attachments'][0]['url'];
$response['pic']=$post['thumbnail_images']['medium']['url'];
$ response ['type'] = - test-- if $ video null! echo viceo;
答案 0 :(得分:0)
不起诉你的要求:/如果你问如何检查一些变量类型你可以用if语句来做... file testing operators
所以基本上如果表达式求值为TRUE,PHP将执行语句,如果计算结果为FALSE,它将忽略它。另请访问If manual - php
if ($response['type'] === null) {
echo "Response type is null";
// Do something
} else {
echo "Response type is not null!";
// Do something
}