PHP Set 8 Flashcards
What does a child class inherit from its parent class?
All public and protected properties and methods
How is an inherited class defined?
Using the extends keyword
Ex: class Apple extends Food { }
How can an inherited method be overridden in a child class?
By redefining a method using the same name in the child class
How can method overriding or class inheritance be prevented?
Using the final keyword prevents child classes from being made from an object or a method being redefined
What is an abstract class?
A class that has at least one abstract method
What is an abstract method?
A method that is declared with the abstract keywork and not implemented in code
What is the syntax for declaring an abstract function?
abstract function name($param): returntype;
What are the rules for when a child class is inherited from an abstract class?
- The child class method must be defined with the same name and redeclare the parent abstract method
- The child class method must be defined with the same or a less restricted access modifier
- The number of required arguments must be the same but the child class can add optional arguments
What is the difference between an interface and an abstract class?
- Interfaces cannot have properties but abstract classes can
- All interface methods are abstract so they abstract keyword isn’t necessary
- All interface methods must be public
- Classes can implement an interface and inherit from another class at the same time
How do you declare an interface and how do you implement one?
Declare:
interface Animal {
functions
}
Implement:
class Cat implements Animal { }
What are the 2 methods used to connect to MySQL?
- MySQLi extension
- PDO (PHP Data Objects)
What is the main difference between MySQLi and PDO?
PDO supports various databases but MySQLi only supports MySQL
MySQLi is a but faster
PDO supports 12 different drivers but MySQLi only supports MySQL
How do you open a MySQL connection using MySQLi?
$conn = new mysqli(“localhost”, “username”, “password”, “dbName”)
How do you open a MySQL connection using PDO?
$conn = new PDO($dsn, “root”, “lsucceed168”, $options)
where $dsn = “mysql:host=localhost;dbname=name;charset=utf8mb4”
How do you create a table in MySQL?
With the CREATE TABLE statement
$sql = “CREATE TABLE MyGuests (id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
firstname VARCHAR(30) NOT NULL, lastname VARCHAR(30) NOT NULL, email VARCHAR(50),
reg_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP )”;
How do you perform an insert to a table in MySQL?
With the INSERT INTO statement
$sql = “INSERT INTO MyGuests (firstname, lastname, email) VALUES (‘John’,
‘Doe’, ‘john@example.com’)”;
What is the difference between MySQLi and PDO when detecting command errors?
With MySQLi you can check the return value in an if statement
With PDO you have to use a try-catch block to detect errors
What is a MySQL prepared statement?
A technique used to execute the same or similar SQL statements repeatedly with high efficiency
What are the procedures for creating a prepared MySQL statement?
- Prepare: create an SQL query with empty values as placeholders with a question mark or variable name
- Bind: Bind values or variables to the placeholders
- Execute the query simultaneously
What is the syntax to execute a prepared statement with MySQLi?
$sql = $conn->prepare(“INSERT INTO
myguests(firstname, lastnamen,
email) VALUES (?, ?, ?)”);
$sql->bind_param(“sss”, $fn, $ln,
$email); // “sss” means that $fn, $ln
and $email as a string
$fn = “Mary”;
$ln = “Gao”;
$email = “mary_gao@gmail.com”;
$sql->execute();
What are the benefits of using prepared SQL statements?
- They are useful against SQL injection attacks
- They reduce parsing time as the preparation of the query is only done once when the same statement is needed repeatedly
- Minimize server bandwidth as you need to send only the parameters each time and not the whole statement
What data types can be passed in when using bind_param?
i for integer
d for double
s for string
b for binary large object
What is the syntax to execute a prepared statement with PDO?
$stmt = $conn->prepare(“INSERT INTO
MyGuests (firstname, lastname,
email)
VALUES (:firstname, :lastname,
:email)”);
$stmt->bindParam(‘:firstname’,
$firstname);
$stmt->bindParam(‘:lastname’,
$lastname);
$stmt->bindParam(‘:email’, $email);
$firstname = “Mary”;
$lastname = “Gao”;
$email = “mary.gao@example.com”;
$stmt->execute();
What are the other differences between MySQLi and PDO?
- PDO allows for named parameters but with MySQLi you can only use ?
- PDO does not allow using named and positional parameters in the same query