sms_test.php 308 B

12345678910111213141516
  1. <?php
  2. require_once (BASE_CORE_PATH . '/framework/libraries/sms.php');
  3. function getcode()
  4. {
  5. $code = sprintf("%04d",rand(0, 9999));
  6. return $code;
  7. }
  8. $code = getcode();
  9. $sms = new Sms();
  10. $sms->send('13917248980', array('code' =>"9867",'time' => "5", "type" => Sms::register_code));