I'm looping through a title from a table so it's essentially something along these lines.
foreach($c as $row){
echo string_shorten($row['title']);
}
What I'm doing is trying is a switch statement that would switch between what I want it to search for and once it's found replace it with what I choose in the str_replace:
function string_shorten($text){
switch(strpos($text, $pos) !== false){
case "Hi":
return str_replace('Hi','Hello', $text);
break;
}
}
Any suggestions or possible alternatives would be appreciated. It feels like I'm really close but not quite.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…