Author: jyoti rani

Files explanation – Angular 7

See the structure of the Angular7 app on VisualStudio IDE (how it looks on IDE). For Angular7 development, you can use either Visual Studio Code IDE or editor of your...

General IT Interview Questions and Answers

How to setup / install Angular7 ?

Environment Setup for Angular 7 To use the Angular7, you must have the below softwares configured. Otherwise you need to install them to start Angular on your system. Here are...

Php tutorials for beginners with example

vfprintf – PHP String Functions

Syntax : vfprintf ( stream_handle, string_format, argarray ); Description : vfprintf() function writes a formatted string to a stream. Stream specified by stream_handle. Works similar as fprintf() but accepts an array...

Php tutorials for beginners with example

sscanf – PHP String Functions

Syntax : sscanf ( string, string_format, arg1, arg2, arg3… ); Description : The sscanf() function parses input from a string according to a string_format. Output will come according to the string_format....

Php tutorials for beginners with example

soundex – PHP String Functions

Syntax : soundex ( string ); Description : soundex() function calculates the soundex key of str. This soundex function returns a string 4 characters long, starting with a letter. Note: It creates the same key...

Php tutorials for beginners with example

similar_​text – PHP String Functions

Syntax : similar_​text ( string1, string2, percentage); Description : similar_​text() function calculates the similarity between two strings with values and percentage. Note: The levenshtein() function is faster than the similar_text() function. However, the similar_text() function will...

Php tutorials for beginners with example

sha1 – PHP String Functions

Syntax : sha1 ( string, raw_output ); Description : sha1() function calculates the sha1 hash of a string. Parameter : [table caption=”” width=”100%” colwidth=”15%|15%|15%|55%” colalign=”left|lef|lef|left”] Name, Required /Optional, Value Type, Description string...

Php tutorials for beginners with example

sha1_​file – PHP String Functions

Syntax : sha1_file ( filename, raw_output ); Description : sha1_file() function calculates the sha1 hash of the file specified by filename using the » US Secure Hash Algorithm 1, and returns that hash....

Php tutorials for beginners with example

sprintf – PHP String Functions

Syntax : sprintf ( string_format, arg1, arg2, arg3… ); Description : The sprintf() function output a formatted string. Output will come according to the string_format. The arg1, arg2, ++ parameters will...

Php tutorials for beginners with example

setlocale – PHP String Functions

Syntax : setlocale ( category, locale ); Description : The setlocale() function sets the locale information. Locale information is currency format, currency symbol, language, monetary, time and other information specific for a...

Php tutorials for beginners with example 0

printf – PHP String Functions

Syntax : printf ( string_format, arg1, arg2, arg3… ); Description : The printf() function output a formatted string. Output will come according to the string_format. The arg1, arg2, ++ parameters will...

Php tutorials for beginners with example

quotemeta – PHP String Functions

Syntax : quotemeta ( string ); Description : The quotemeta() function adds backslashes in front of below characters. The predefined characters are: period (.) backslash (\) plus sign (+) asterisk (*)...

Php tutorials for beginners with example

quoted_​printable_​decode – PHP String Functions

Syntax : quoted_​printable_​decode ( string ); Description : The quoted_​printable_​decode() function decodes a quoted-printable string to an 8-bit string. This function returns an 8-bit binary string corresponding to the decoded quoted...

Php tutorials for beginners with example

quoted_​printable_​encode – PHP String Functions

Syntax : quoted_​printable_​encode ( string ); Description : The quoted_​printable_​encode() function convert a 8 bit string to a quoted-printable string. Quoted printable string is created according to » RFC2045, section 6.7. It is same...

Php tutorials for beginners with example

print – PHP String Functions

Syntax : print ( strings ); Description : The print() function outputs one or more strings. It is not actually a real function (it is a language construct) so you are...

Php tutorials for beginners with example

parse_​str – PHP String Functions

Syntax : parse_​str ( stringto_encode, array ); Description : The parse_​str() function parses a query string into variables. Parses stringto_encode, as if it were the query string passed via a URL and...

Php tutorials for beginners with example

ord – PHP String Functions

Syntax : ord ( string ); Description : The ord() function calculates the ASCII value of first character of a string. This will convert the first byte of a string to...