substr_replace() Function in PHP
substr_replace() function நாம் கொடுக்கும் string இல் குறிப்பிட்ட text ஐ replace செய்கிறது.
substr_replace(string, replacement, start, length)
Example1
<?php
$data = " learn programming in tamil";
echo substr_replace($data,"Linto.in",0,0);
?>
மேலே உள்ள Example1-ஐ கவனிக்கவும் $data என்ற variable-இல் " learn programming in tamil" என்ற string உள்ளது. substr_replace() function $data variable இல் உள்ள string மற்றும் replacement text ஆகியவை argument ஆக அனுபப்படுகிறது. இங்கு position value மற்றும் length இரண்டும் 0 என கொடுகபட்டுள்ளது. இங்கு string இல் starting position இல் replacement text இணைகிறது எனவே Linto.in learn programming in tamil என கிடைக்கிறது.
Linto.in learn programming in tamil
Example2
<?php
$input = "parallel codes";
echo substr_replace($input,"tamil",16);
?>
மேலே உள்ள Example2-ஐ கவனிக்கவும் $input என்ற variable-இல் "parallel codes" என்ற string உள்ளது. substr_replace() function $input variable இல் உள்ள string மற்றும் replacement text ஆகியவை argument ஆக அனுபப்படுகிறது. இங்கு position value 16 என கொடுகபட்டுள்ளது. இங்கு input string இல் 16 position இல் replacement text இணைகிறது எனவே parallel codestamil என கிடைக்கிறது.
parallel codestamil
இது பற்றிய தங்களின் கருத்துகளை இங்கே பதிவிடுங்கள் . இது பயனுள்ளதாக விரும்பினால் மற்றவர்களுக்கும் இதை share செய்யுங்கள்.
Comments