Jump to content
php.lv forumi

Recommended Posts

Posted
$sms = 'Ljoti garsh sms...... ';
if (strlen($sms)=200)
{
 sendSMS(substr($sms,0,100));
 sendSMS(substr($sms,100,100));
}
else
{
 sendSMS($sms);
}

Posted
$sms=str_split($text,200);

foreach($sms as $val)sendSMS($val);

str_split nepamanīju

 

$sms=str_split($text,200);

while(sendSMS(array_shift($sms)));

//of coss, sendSMS jāatgriež T/F par izpildi

×
×
  • Create New...