You're writing a custom exception class in PHP to handle specific types of errors in your application. Which built-in PHP class would you extend to achieve this?
- Exception
- Error
- Throwable
- CustomException (No built-in class)
To create a custom exception class in PHP, you extend the built-in Exception class. This allows you to handle specific types of errors in your application.
For secure user authentication, what additional measure can be used along with a password to enhance security?
- Two-factor authentication (2FA)
- Using a longer username
- Implementing CAPTCHA challenges
- Enforcing strong password policies
Two-factor authentication (2FA) is an additional security measure that requires users to provide two forms of identification to access their account, enhancing security.
Which PHP function is used to read the contents of a file into a string?
- file_get_contents()
- readfile()
- fopen()
- fread()
The file_get_contents() function is used to read the contents of a file into a string in PHP. It's a convenient way to work with file data as a string.
The practice of ensuring that data is clean and correct before it's processed is called data ________.
- Validation
- Encryption
- Sanitization
- Obfuscation
Data "Validation" is the process of ensuring that data is clean and conforms to predefined standards or rules before it is processed. This helps prevent incorrect or malicious data from affecting the system.
Which of the following PHP functions is used to check if a given key or index exists in an array?
- key_exists
- in_array
- array_key_exists
- index_exists
To check if a given key or index exists in a PHP array, you should use the array_key_exists function. This function checks if a specific key exists in an array, which is particularly useful for associative arrays.
Consider you are building a search functionality for your website. Which function would you use to determine if a particular keyword exists within a content string?
- strpos()
- str_replace()
- str_word_count()
- str_split()
The strpos() function is used to find the position of a substring (keyword) within a string. It returns the position or false if not found, making it suitable for searching within a content string.
The ________ function in PHP returns an array of files and directories from the specified directory.
- file_get_contents
- dir()
- scandir()
- list_dir()
The scandir() function is used in PHP to return an array of files and directories in a specified directory. It's commonly used for directory listing operations.
How do you define a constant in PHP?
- define('MY_CONSTANT', 'constant value');
- $constant('MY_CONSTANT')
- constant('MY_CONSTANT')
- MY_CONSTANT = 'constant value';
In PHP, you define a constant using the define function. The correct syntax is define('CONSTANT_NAME', 'constant_value').
What does the PHP array_merge() function do?
- Combines two or more arrays into one
- Multiplies elements of two arrays
- Checks if an array is empty
- Sorts the elements of an array
The array_merge() function in PHP combines two or more arrays into a single array, preserving the keys and their corresponding values from all input arrays.
In PHP, to ensure that a method in a child class has the same name, number, and type of arguments as a method in its parent class, you use the ________ keyword.
- 'new'
- 'extends'
- 'this'
- 'private'
In PHP, the 'extends' keyword is used to create a child class that inherits properties and methods from its parent class. It enforces method signature conformity.