how to get substring of string without using substr() function in php ????

Answers were Sorted based on User's Feedback



how to get substring of string without using substr() function in php ????..

Answer / abhijit sil

Accessing single characters in a string can be achived
using "curly braces"
<?php

$string = 'abcdef';
echo $string{0}; // a
echo $string{3}; // d
echo $string{strlen($string)-1}; // f

?>

Is This Answer Correct ?    11 Yes 0 No

how to get substring of string without using substr() function in php ????..

Answer / dheeraj

Use explode()just notice the following code. here it splits
a string to parts and forms an array. Now u assign the array
element to a string.

<?php
$str = "Hello world. It's a beautiful day.";
print_r (explode(" ",$str));
?>

Is This Answer Correct ?    5 Yes 1 No

how to get substring of string without using substr() function in php ????..

Answer / nadeem sartawi

Write a PHP function that Returns the part of string
specified by the start and length parameters.

Hint 1: the function accepts three parameters.
Parameter:Description
string :Required. Specifies the string to return a part of
start :Required. Specifies where to start in the string
length :Optional. Specifies the length of the returned
string. :Default is to the end of the string.
Hint 2: YOU ARE NOT ALLOWED TO USE THE "substr" FUNCTION.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More PHP Interview Questions

What is mysqli_real_escape_string?

0 Answers  


How can MYSQL functions be available with PHP?

0 Answers  


Which is better php praogramming or cad/cam scope wise and also salaray wise?

0 Answers  


Tell me how to get the value of current session id?

0 Answers  


hi to all i am fresher in php and want to learn php and want a fresher job in php. how to total time i expend to learn php and what is freshers salary.

9 Answers  






Is age interval or ordinal?

0 Answers  


In How many ways can u represent Not equal?Give Syntax of all ways..

3 Answers  


What is variable declaration?

0 Answers  


What are some of the advanced features of php?

0 Answers  


What is RSS?How to use it in Program?

3 Answers  


How long is session timeout?

0 Answers  


What types of MYSQL function available for affecting columns

0 Answers  


Categories