function __construct(){
$ajax = add_action(\'wp_ajax_my_action\', array($this, \'ajax_respone\'));
var_dump($ajax);
var_dump($ajax == \'1234\');
die();
}
public function ajax_respone(){
$whatever = intval( $_POST[\'whatever\'] );
return $whatever;
}
它打印:
布尔(真)
布尔(真)
怎么可能\'1234\'
或者只是1234
等于真?仅帮助===
还注意到die()
在下一个代码中不起作用
function __construct(){
add_action(\'wp_ajax_my_action\', array($this, \'ajax_respone\'));
}
public function ajax_respone(){
$whatever = intval( $_POST[\'whatever\'] );
var_dump($whatever);
die();
}
这意味着该功能不会启动,或仅在请求时启动?