send(); } public function testSubstring() { $str = "123456789ABCDEFG"; $len = strlen($str); $start = 1; $x = substr($str,$start,$len - $start); $src = "BBB中国人AAA"; $x = strlen($src); $y = substr($src,7,3); } public function testOption() { $ch = 65; $x = sprintf("%c",$ch); } public function testMessage() { $pushor = new push_sender(); $info['member_id'] = 39187; $info['text'] = 'hello message'; $info['custom'] = ['type' => 'add_special','special_id' => 300]; $pushor->send_message($info); } }