PHP string ltrim() function PHP string ltrim() function is predefined function. It is often used to remove whitespace from both sides of…
regex
-
-
PHP html_entity_decode() Function PHP html_entity_decode() is string function. It is used to convert HTML entities to characters. The string function html_entity_decode() is…
-
WinSCP Ubuntu It stands for Windows Secure Copy. WinSCP is an open-source and free SSH File Transfer Protocol, Secure Copy Protocol, Amazon…
-
PHP exp() function The exp() function is used to calculate the exponent of e. It returns e raised to the power of…
-
PHP pow() function The pow() is a PHP mathematic function. It raises the first number to the power of the second number.…
-
Fibonacci Series Fibonacci series is the one in which you will get your next term by adding previous two numbers. For example,…
-
Number Triangle Number triangle in PHP can be printed using for and foreach loop. There are a lot of patterns in number…
-
Leap Year Program A leap year is the one which has 366 days in a year. A leap year comes after every…
-
PHP Max() Function The max() function is used to find the highest value. Syntax: max(array_values); OR max(value1,value2,value3,value4…); Name Description Required/Optional array_values Specifies…
-
Palindrome Number A palindrome number is a number which remains same when its digits are reversed. For example, number 24142 is a…