我想知道以下是否可能。我希望我在下面写的 if 语句在一行(三元)中。
我想在 cURL 的数组中使用三元(速记 php 代码)。
表单数据示例:
$_POST['data'] = 'sometextrighthereisgood:this is what we want"; //user input example.
如果声明:
if(isset($_POST['data']))
{
$string = explode(':', $_POST['data']);
$string = $string[1]; //contains "this is what we want"
}
else
{
$string = NULL;
}
数组示例:
$arr = array('text' => $string); //example for use in the array.
如果可能的话,有什么想法吗?
亲切的问候亚历克斯