onlinecity / php-smpp

PHP 5 based SMPP client library
232 stars 160 forks source link

Use of undefined constant MSG_DONTWAIT #64

Open sinanouri opened 7 years ago

sinanouri commented 7 years ago

Any time i run the code to send sms i got this: Notice: Use of undefined constant MSG_DONTWAIT - assumed 'MSG_DONTWAIT' in C:\wamp64\www\SMPP\sockettransport.class.php on line 327

nguereza-tony commented 5 years ago

Hi below the workaround if (!defined('MSG_DONTWAIT')) { define('MSG_DONTWAIT', 0x20); } see here https://bugs.php.net/bug.php?id=48326