Section 1

Preview this deck

PHP

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (87)

Section 1

(50 cards)

PHP

Front

Object-oriented like JAVA

Back

FALSE

Front

Strrev function PARTIALLY reverses the whole output

Back

FALSE

Front

PHP/FI in APRIL 1994 was completes

Back

Variables in PHP Concatenation operators

Front

.(period) , Combine strings

Back

TRUE

Front

To return the value of both datatype and string length, you use vardump function of PHP

Back

TRUE

Front

We can use the same way of commenting commands in PHP to that of C and JAVA

Back

HTML

Front

Currently have 6 HTML versions started way back 1991

Back

June 1996

Front

PHP 2.0 was completed

Back

STR_WORD_COUNT()

Front

allow users to count word within a string

Back

Rasmus Lerdorf

Front

Father of PHP scripting

Back

3 levels of visibilities:

Front

Public, Private and Protected

Back

FALSE

Front

PHP licenses can be downloaded online at A MINIMUM FEE

Back

June 1995

Front

Opened the scripts to the public

Back

1997

Front

Third version of PHP has begun

Back

Skeleton

Front

HTML is said to be the ------- of all webpages.

Back

STRLEN( )

Front

function that returns string length in php

Back

FALSE

Front

The echo function has always NO hazard in PHP

Back

PHP 5

Front

Pass by reference function in PHP was made available

Back

ECHO

Front

is used output strings, character or numbers in PHP

Back

Constant

Front

variables however are already pre-defined by PHP users

Back

PHP

Front

Originally used for tracking visit on ONLINE RESUME and named his scripts as Personal Home Page tools

Back

HTMl composes of 3 parts:

Front

HTML tags, head and the body

Back

Lower HTML versions

Front

required the head section in reference to the web pages metadata

Back

6 Elements in HTML

Front

Document,Body,Style and Appearance,Anchor,Image,List

Back

PHP stands for

Front

Hypertext Preprocessor

Back

FALSE

Front

Ternary function can be used as a subtitute for an IF CONDITION

Back

Variables in PHP Type conversions

Front

Set type function, Get type function, Type casting

Back

Constants

Front

can be not case sensitive

Back

PHP

Front

Open script language

Back

HTML stands for

Front

Hyper Text Markup Language

Back

TRUE

Front

Print function assumes the roles of an echo function

Back

Rasmus Lerdorf

Front

Developed PHP in 1994 using common gateway interface binaries written in the C programming Language.

Back

1994

Front

PHP was developed

Back

Andi Gutmans and Zeev Suraski

Front

The proponents of the Zend Engine

Back

Strrev

Front

This function allows you to reverse your inputs in PHP

Back

FALSE

Front

We have 9 PRIMITIVE TYPES in PHP where the only data types available are Boolean,Char,String,Floaat

Back

FALSE

Front

PHP is also known as Personal Homepage Tools UP UNTIL NOW

Back

Footer section

Front

Optional and not required

Back

PHP

Front

can be embedded to HTML

Back

HEREDOC

Front

are used to provide the luxury of having php users to encode long strings in form of applications.

Back

C programming

Front

PHP originated from what programming API

Back

VARDUMP

Front

display current data type and values that you are working

Back

Zend Optimizer

Front

Automatically optimizes a PHP scripts

Back

Can you always omit the header part in the HTML code?

Front

False

Back

HTML5

Front

automatically detecta and completes any incomplete head tagging

Back

HTML

Front

structure and backbone of a web page

Back

April 1996

Front

Lerdorf introduced PHP/FI

Back

PHP defined

Front

PHP can be run through various operating systems such as Windows,Linux,Mac OS X. PHP can connect and support a wide range of database technologies such as MySQL PHP packages can be downloaded for FREE as it is open-source. Free of charge.

Back

FALSE

Front

PHP work without any local webserver in place

Back

STRPOS()

Front

allows you to search for a specific text within your strings

Back

Section 2

(37 cards)

PHP Operators Arithmetic Operators

Front

Syntatical shortcuts, variables have value undefined

Back

Loop

Front

is simple a sequence of instruction

Back

Arrays

Front

can hold one or more values within a singlen container

Back

FOREACH Loops

Front

allow easier constructs hence allow easier way to iterate over arrays and objects only, reads the whole array first before proceeding with the iteractivw act

Back

TRUE

Front

Loops are allowed to fetch databin PHP

Back

PHP Data Types 2 Compound types:

Front

Array, Object

Back

PHP Data Types 4 Scalar Types:

Front

Boolean, Integer, Float, String

Back

Indexed Arrays

Front

A hazard that is imposed by this ia you have mixed data type within a single container.

Back

Unset(variable_name) function

Front

used to destroy a variable

Back

PHP Data Types 2 Special types:

Front

Resource , NULL

Back

Juggling

Front

PHP does not require(or support) explicit type definition in variable declaration

Back

Counter

Front

Controlled variable of loop

Back

PHP Operators Constants Operator

Front

Named values, Define values

Back

$argc

Front

Array of arguments passed to script

Back

Types of Loop

Front

For loop, While loop, Do-While loop

Back

PHP SERVER ENVIRONMENT

Front

Provides information about environment execution undertaken by PHP

Back

For Loop

Front

loops through a block a code of code as numerically specified

Back

3 Types of Array

Front

Indexed, Associative and Multi-Dimensional

Back

TRUE

Front

PHP is capable on working with multi-dimensional arrays

Back

Multidimenaional Arrays

Front

the more number of dimensions applied the more complex the array you are working on

Back

$_SERVER['PHP_SELF']

Front

Filename of the currently executing script, relative to the document root

Back

current(array_name) function

Front

displays current position of your pointer

Back

Arrays

Front

also known as an ORDERED MAP

Back

STR_REPLACE()

Front

replace characters within your string

Back

While Loop

Front

loops through a block of code as long as the specified condition is TRUE

Back

Count(array_name) function

Front

used to return array length

Back

Juggling

Front

If you assign a string value to variable var, var becomes a string. If you then assign an integer value to var, it becomes an integer.

Back

var_dump(array_name) function

Front

used to determine data type of value within an array

Back

Assosiative Arrays

Front

arrays where you can use NAMED KEYS as your point of reference within your array

Back

Is_Scalar(variable) function

Front

Boolean oriented function that would allow to determine whether an array is of type of scalar

Back

N-1

Front

used by indices in reference to the array size

Back

$argv

Front

Contains the number of command line parameters

Back

reset(array_name) function

Front

resets array pointer at the begining of the list

Back

next(array_name) function

Front

allows you to advance pne step within your arrays

Back

$_SERVER

Front

Displays data about the currently running server(headers, paths and script location)

Back

Keys

Front

values are associated from one variable to a specific values

Back

Do-While Loop

Front

will always execute the block of code ONCE, it will then check the condition, and repeat the loop while the specified condition is TRUE

Back