How do you develop your own PHP extension ?

Answers were Sorted based on User's Feedback



How do you develop your own PHP extension ?..

Answer / juhi

<?

print ".PHP";

?>

Is This Answer Correct ?    0 Yes 2 No

How do you develop your own PHP extension ?..

Answer / radha_9090

<?
echo 'PHP';
?>
this file save as .php extention.

Is This Answer Correct ?    4 Yes 13 No

Post New Answer

More PHP Interview Questions

When to use self over $this?

0 Answers  


what is the best function that can be used to connect to mysql database and in what cases that we can use below functions ? 1. mysql_connect() 2. mysql_pconnect() please give your answer with all pros and cons

1 Answers  


Which is a perfect example of runtime polymorphism?

0 Answers  


<?php include ("db.php"); $result = mysql_query("SELECT ques_id FROM questionbank order by ques_id limit 5 "); while($obj=mysql_fetch_array($result)) { $ad1[$obj['ques_id']]++;//Used an array and inserted the database query results into it. } $rand_keys=array_rand($ad1,1); //Did a random array function echo "First random id = ".$ad1[$rand_keys[0]]; echo "<br>Second random id = ".$ad1[$rand_keys[1]]; ?> <!--Its not working. Have any solution for this. -->

1 Answers  


Is PHP is procedure oriented or object oriented?

10 Answers   DLF, Net Solution,






What is csrf token and why it is required?

0 Answers  


how can i get USA time using php...

1 Answers  


How can we know the count/number of elements of an array?

1 Answers  


Tell me what does the array operator '===' means?

0 Answers  


Is strcmp case sensitive?

0 Answers  


What is overloading and overriding in oop?

0 Answers  


Which function can be used to exit from the script after displaying the error message?

0 Answers  


Categories