strtok() Function in PHP
strtok() function string ஐ smaller string ஆக split செய்கிறது. அதாவது தனித்தனி tokens ஆக split செய்கிறது.
strtok(string, split)
Example1
<?php
$str1 = "Hi everyone! Welcome to linto.in";
$del = "e";
$token = strtok($str1, $del);
while($token !==false)
{
echo $token. "\n";
$token =strtok($del);
}
?>
மேலே உள்ள Example1-ஐ கவனிக்கவும் இங்கு $str1 என்ற variable இல் "Hi everyone! Welcome to linto.in" என்ற string மற்றும் $del variable இல் "e என்ற string strtok என்ற function இல் அடுத்தடுத்த argument ஆக அனுபப்படுகிறது. இந்த function "e" என்ற split delimiter ஐ பொருத்து நாம் argument ஆக அனுப்பும் string ஐ தனித்தனி tokens ஆக split செய்கிறது. இங்கு output Hi v ryon ! W lcom to linto.in தனித்தனி tokens ஆக கிடைக்கிறது.
Hi v ryon ! W lcom to linto.in
Example2
<?php
$str2 = "parallel codes";
$del = "e";
$token = strtok($str2, $del);
while($token !==false)
{
echo $token. "\n";
$token =strtok($del);
}
?>
மேலே உள்ள Example2-ஐ கவனிக்கவும் இங்கு $str2 என்ற variable இல் "parallel codes" என்ற string மற்றும் $del variable இல் "e என்ற string strtok என்ற function இல் அடுத்தடுத்த argument ஆக அனுபப்படுகிறது. இந்த function "e" என்ற split delimiter ஐ பொருத்து நாம் argument ஆக அனுப்பும் string ஐ தனித்தனி tokens ஆக split செய்கிறது. இங்கு output parall l cod s தனித்தனி tokens ஆக கிடைக்கிறது.
parall l cod s
இது பற்றிய தங்களின் கருத்துகளை இங்கே பதிவிடுங்கள் . இது பயனுள்ளதாக விரும்பினால் மற்றவர்களுக்கும் இதை share செய்யுங்கள்.
Comments