Php Interview Question and Answers
9. | What do the standard PHP delimiter tags look like? |
---|---|
. . . .<?php . . . . // your code here . . . . ?>. |
|
10. | What do the script PHP delimiter tags look like? |
---|---|
. . . .<script language="php"> . . . .// your code here . . . .</script>. |
|
11. | What do the ASP PHP delimiter tags look like? |
---|---|
. . . .<% . . . .// your code here . . . .%> |
|
12. | Which function would you use to determine the length of a string? |
---|---|
The strlen() function returns the length of a string. | |