├── .gitattributes ├── .gitignore ├── 1. Basic ├── 1. Hello World.php ├── 2. Comment.php ├── 3. Case Sensitivity.php └── 4. Type Data.php ├── 10. Error ├── 1. Error - die().php ├── 2. Error - Custom.php ├── 3. Error - error_reporting().php ├── 4. Error - trigger_error().php ├── 5. Exception.php ├── 6. Custom Exception.php └── 7. User Defined Exception.php ├── 11. OOP ├── 1. Class.php ├── 10. Inheritance II.php ├── 11. Static Class.php ├── 12. Static Class II.php ├── 2. Object.php ├── 3. Properties.php ├── 4. Manipulate Properties.php ├── 5. Dynamically Properties.php ├── 6. Method.php ├── 7. Method II.php ├── 8. Constructor.php ├── 9. Inheritance.php ├── Example - Constructor with Scalar Type Declaration.php └── Example - Object.php ├── 13. File System ├── Filesystem - Basename.php ├── Filesystem - Disk_Total_Space().php ├── Filesystem - chdir.php ├── Filesystem - copy().php ├── Filesystem - dir().php ├── Filesystem - dirname().php ├── Filesystem - feof().php ├── Filesystem - file().php ├── Filesystem - file_exist().php ├── Filesystem - file_get_contents().php ├── Filesystem - fopen().php ├── Filesystem - fopen()l.php ├── Filesystem - fread().php ├── Filesystem - header().php ├── Filesystem - html_entity().php ├── Filesystem - is_dir().php ├── Filesystem - is_file().php ├── Filesystem - mkdir.php ├── Filesystem - move_upload_file.php ├── Filesystem - opendir().php ├── Filesystem - realpath().php ├── Filesystem - rename().php ├── Filesystem - scandir().php └── Filesystem - tmpfile().php ├── 15. Cookies ├── 1. Create Cookies.php ├── 2. Delete Cookies.php ├── 3. Retrieve Cookies.php ├── 4. Check Cookie.php └── Example - Cookies.php ├── 15. Date & Times ├── 1. Date.php ├── 2. Time.php ├── 3. Timezone.php ├── Day Until x Day.php ├── Next Six Saturday.php ├── mktime().php └── strtotime.php ├── 16. Session ├── 1. Create Session.php ├── 2. Session Option.php ├── 3. Delete Session.php ├── 4. Session ID.php └── 5. Session Regenerate ID.php ├── 2. Variable ├── 1. Variable.php ├── 2. View Variable.php ├── PHP Global.php ├── PHP Server.php ├── gettype.php ├── is_float.php ├── is_numeric.php ├── is_scalar.php ├── isset.php └── var_dump.php ├── 3. Data Types ├── 1. Integer.php ├── 10. Object.php ├── 2. Integer Overflow 32bit.php ├── 3. Integer Overflow 64bit.php ├── 4. Integer Characteristic.php ├── 5. Floating Point Number.php ├── 7. Boolean.php ├── 8. String - Single Quote.php └── 9. Array.php ├── 4. Operator └── Comparison Operator.php ├── 5. String ├── String - define().php ├── String - explode().php ├── String - html_entity_decode.php ├── String - implode().php ├── String - str_shuffle().php ├── String - strcasecmp().php ├── String - strcmp().php ├── String - strrev().php └── str_replace.php ├── 6. Array ├── Array - Array Multidimensi.php ├── Array - Associative Array.php ├── Array - Create Array by Index.php ├── Array - Create Array with array().php ├── array_pop().php ├── in_array() Array Needle.php ├── in_array().php └── in_srray() Strict.php ├── 7. Conditional ├── Conditional Statement - Equal Case.php ├── Conditional Statement - Equal.php ├── Conditional Statement - Not Equal.php ├── Conditional Statement - Shorthand.php ├── Switch - Integer.php └── Switch - String.php ├── 9. Function ├── 1. Function.php ├── 2. Function With Parameter.php ├── 3. Function Return Multiple Value.php ├── 4. Function Return Global Variable.php ├── 5. Function Parameter List.php ├── 6. Anonymous Function.php ├── 7. Function Parameter Function.php ├── 8. Closure.php └── 9. Generator.php ├── Example - Ajax ├── crudclass.php ├── getuser.php └── index.php ├── Example - OOP ├── OOP10_AssociativeArray.php ├── OOP11_Fetch.php ├── OOP12_PreparedStatement.php ├── OOP13_FetchStyle.php ├── OOP14_FetchStyleBoth.php ├── OOP15_FetchStyleLazy.php ├── OOP16_FetchStyleObj.php ├── OOP1_ClassAndObject.php ├── OOP2_ConstructFunction.php ├── OOP3_Inheritance.php ├── OOP4_FunctionOverriding.php ├── OOP5_AccessModifierPublic.php ├── OOP6_AccessModifierPrivate.php ├── OOP7_AccessModifierPrivate2.php ├── OOP8_AccessModifierProtected.php ├── OOP9_IndexedArray.php ├── lib │ └── crudclass.php ├── oop.sql ├── pdo_delete.php ├── pdo_insert.php ├── pdo_select.php └── pdo_update.php ├── Example - Web Application ├── bootstrap │ ├── css │ │ ├── bootstrap.min.css │ │ └── main.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ └── bootstrap.min.js ├── crudclass.php ├── dbconfig.php ├── edit_record.php ├── hapus_record.php ├── index.php └── tambah_record.php ├── FIlter & Validation ├── Filter Sanitazion - Email.php ├── Filter Sanitazion - Float.php ├── Filter Sanitazion - Integer.php ├── Filter Sanitazion - String.php ├── Filter Sanitazion - URL.php ├── Filter Validation - Boolean.php ├── Filter Validation - Email.php ├── Filter Validation - Integer.php ├── Filter Validation - Min Max Integer.php ├── Filter Validation - String Length.php └── Filter Validation - URL.php ├── Hash Function ├── Hash - ADLER32() Algorithm.php ├── Hash - GOST() Algorithm.php ├── Hash - HAVAL192() Algorithm.php ├── Hash - MD2() Algorithm.php ├── Hash - MD4() Algorithm.php ├── Hash - MD5() Algorithm.php ├── Hash - RIPEMD320() Algorithm.php ├── Hash - SHA512() Algorithm.php ├── Hash - SNEFRU() Algorithm.php ├── Hash - TIGER160() Algorithm.php └── Hash - Whirlpool() Algorithm.php ├── Ideas └── Class-Error.php ├── Math Function ├── Math - Pow().php ├── Math - exp().php ├── Math - floor().php ├── Math - fmod().php ├── Math - min().php └── Math - round().php ├── README.md ├── Snippet └── PreventAccessTwice.php ├── Socket Programming ├── client.php └── server.php ├── Time └── Time - strtotime().php └── TinjuCepatOOPdenganPHP.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/.gitignore -------------------------------------------------------------------------------- /1. Basic/1. Hello World.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/1. Basic/1. Hello World.php -------------------------------------------------------------------------------- /1. Basic/2. Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/1. Basic/2. Comment.php -------------------------------------------------------------------------------- /1. Basic/3. Case Sensitivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/1. Basic/3. Case Sensitivity.php -------------------------------------------------------------------------------- /1. Basic/4. Type Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/1. Basic/4. Type Data.php -------------------------------------------------------------------------------- /10. Error/1. Error - die().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/10. Error/1. Error - die().php -------------------------------------------------------------------------------- /10. Error/2. Error - Custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/10. Error/2. Error - Custom.php -------------------------------------------------------------------------------- /10. Error/3. Error - error_reporting().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/10. Error/3. Error - error_reporting().php -------------------------------------------------------------------------------- /10. Error/4. Error - trigger_error().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/10. Error/4. Error - trigger_error().php -------------------------------------------------------------------------------- /10. Error/5. Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/10. Error/5. Exception.php -------------------------------------------------------------------------------- /10. Error/6. Custom Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/10. Error/6. Custom Exception.php -------------------------------------------------------------------------------- /10. Error/7. User Defined Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/10. Error/7. User Defined Exception.php -------------------------------------------------------------------------------- /11. OOP/1. Class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/1. Class.php -------------------------------------------------------------------------------- /11. OOP/10. Inheritance II.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/10. Inheritance II.php -------------------------------------------------------------------------------- /11. OOP/11. Static Class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/11. Static Class.php -------------------------------------------------------------------------------- /11. OOP/12. Static Class II.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/12. Static Class II.php -------------------------------------------------------------------------------- /11. OOP/2. Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/2. Object.php -------------------------------------------------------------------------------- /11. OOP/3. Properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/3. Properties.php -------------------------------------------------------------------------------- /11. OOP/4. Manipulate Properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/4. Manipulate Properties.php -------------------------------------------------------------------------------- /11. OOP/5. Dynamically Properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/5. Dynamically Properties.php -------------------------------------------------------------------------------- /11. OOP/6. Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/6. Method.php -------------------------------------------------------------------------------- /11. OOP/7. Method II.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/7. Method II.php -------------------------------------------------------------------------------- /11. OOP/8. Constructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/8. Constructor.php -------------------------------------------------------------------------------- /11. OOP/9. Inheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/9. Inheritance.php -------------------------------------------------------------------------------- /11. OOP/Example - Constructor with Scalar Type Declaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/Example - Constructor with Scalar Type Declaration.php -------------------------------------------------------------------------------- /11. OOP/Example - Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/11. OOP/Example - Object.php -------------------------------------------------------------------------------- /13. File System/Filesystem - Basename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - Basename.php -------------------------------------------------------------------------------- /13. File System/Filesystem - Disk_Total_Space().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - Disk_Total_Space().php -------------------------------------------------------------------------------- /13. File System/Filesystem - chdir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - chdir.php -------------------------------------------------------------------------------- /13. File System/Filesystem - copy().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - copy().php -------------------------------------------------------------------------------- /13. File System/Filesystem - dir().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - dir().php -------------------------------------------------------------------------------- /13. File System/Filesystem - dirname().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - dirname().php -------------------------------------------------------------------------------- /13. File System/Filesystem - feof().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - feof().php -------------------------------------------------------------------------------- /13. File System/Filesystem - file().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - file().php -------------------------------------------------------------------------------- /13. File System/Filesystem - file_exist().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - file_exist().php -------------------------------------------------------------------------------- /13. File System/Filesystem - file_get_contents().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - file_get_contents().php -------------------------------------------------------------------------------- /13. File System/Filesystem - fopen().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - fopen().php -------------------------------------------------------------------------------- /13. File System/Filesystem - fopen()l.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - fopen()l.php -------------------------------------------------------------------------------- /13. File System/Filesystem - fread().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - fread().php -------------------------------------------------------------------------------- /13. File System/Filesystem - header().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - header().php -------------------------------------------------------------------------------- /13. File System/Filesystem - html_entity().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - html_entity().php -------------------------------------------------------------------------------- /13. File System/Filesystem - is_dir().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - is_dir().php -------------------------------------------------------------------------------- /13. File System/Filesystem - is_file().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - is_file().php -------------------------------------------------------------------------------- /13. File System/Filesystem - mkdir.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /13. File System/Filesystem - move_upload_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - move_upload_file.php -------------------------------------------------------------------------------- /13. File System/Filesystem - opendir().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - opendir().php -------------------------------------------------------------------------------- /13. File System/Filesystem - realpath().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - realpath().php -------------------------------------------------------------------------------- /13. File System/Filesystem - rename().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - rename().php -------------------------------------------------------------------------------- /13. File System/Filesystem - scandir().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - scandir().php -------------------------------------------------------------------------------- /13. File System/Filesystem - tmpfile().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/13. File System/Filesystem - tmpfile().php -------------------------------------------------------------------------------- /15. Cookies/1. Create Cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/15. Cookies/1. Create Cookies.php -------------------------------------------------------------------------------- /15. Cookies/2. Delete Cookies.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /3. Data Types/1. Integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/3. Data Types/1. Integer.php -------------------------------------------------------------------------------- /3. Data Types/10. Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/3. Data Types/10. Object.php -------------------------------------------------------------------------------- /3. Data Types/2. Integer Overflow 32bit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/3. Data Types/2. Integer Overflow 32bit.php -------------------------------------------------------------------------------- /3. Data Types/3. Integer Overflow 64bit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/3. Data Types/3. Integer Overflow 64bit.php -------------------------------------------------------------------------------- /3. Data Types/4. Integer Characteristic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/3. Data Types/4. Integer Characteristic.php -------------------------------------------------------------------------------- /3. Data Types/5. Floating Point Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/3. Data Types/5. Floating Point Number.php -------------------------------------------------------------------------------- /3. Data Types/7. Boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/3. Data Types/7. Boolean.php -------------------------------------------------------------------------------- /3. Data Types/8. String - Single Quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/3. Data Types/8. String - Single Quote.php -------------------------------------------------------------------------------- /3. Data Types/9. Array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/3. Data Types/9. Array.php -------------------------------------------------------------------------------- /4. Operator/Comparison Operator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/4. Operator/Comparison Operator.php -------------------------------------------------------------------------------- /5. String/String - define().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/5. String/String - define().php -------------------------------------------------------------------------------- /5. String/String - explode().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/5. String/String - explode().php -------------------------------------------------------------------------------- /5. String/String - html_entity_decode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/5. String/String - html_entity_decode.php -------------------------------------------------------------------------------- /5. String/String - implode().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/5. String/String - implode().php -------------------------------------------------------------------------------- /5. String/String - str_shuffle().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/5. String/String - str_shuffle().php -------------------------------------------------------------------------------- /5. String/String - strcasecmp().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/5. String/String - strcasecmp().php -------------------------------------------------------------------------------- /5. String/String - strcmp().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/5. String/String - strcmp().php -------------------------------------------------------------------------------- /5. String/String - strrev().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/5. String/String - strrev().php -------------------------------------------------------------------------------- /5. String/str_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/5. String/str_replace.php -------------------------------------------------------------------------------- /6. Array/Array - Array Multidimensi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/6. Array/Array - Array Multidimensi.php -------------------------------------------------------------------------------- /6. Array/Array - Associative Array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/6. Array/Array - Associative Array.php -------------------------------------------------------------------------------- /6. Array/Array - Create Array by Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/6. Array/Array - Create Array by Index.php -------------------------------------------------------------------------------- /6. Array/Array - Create Array with array().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/6. Array/Array - Create Array with array().php -------------------------------------------------------------------------------- /6. Array/array_pop().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/6. Array/array_pop().php -------------------------------------------------------------------------------- /6. Array/in_array() Array Needle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/6. Array/in_array() Array Needle.php -------------------------------------------------------------------------------- /6. Array/in_array().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/6. Array/in_array().php -------------------------------------------------------------------------------- /6. Array/in_srray() Strict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/6. Array/in_srray() Strict.php -------------------------------------------------------------------------------- /7. Conditional/Conditional Statement - Equal Case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/7. Conditional/Conditional Statement - Equal Case.php -------------------------------------------------------------------------------- /7. Conditional/Conditional Statement - Equal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/7. Conditional/Conditional Statement - Equal.php -------------------------------------------------------------------------------- /7. Conditional/Conditional Statement - Not Equal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/7. Conditional/Conditional Statement - Not Equal.php -------------------------------------------------------------------------------- /7. Conditional/Conditional Statement - Shorthand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/7. Conditional/Conditional Statement - Shorthand.php -------------------------------------------------------------------------------- /7. Conditional/Switch - Integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/7. Conditional/Switch - Integer.php -------------------------------------------------------------------------------- /7. Conditional/Switch - String.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/7. Conditional/Switch - String.php -------------------------------------------------------------------------------- /9. Function/1. Function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/9. Function/1. Function.php -------------------------------------------------------------------------------- /9. Function/2. Function With Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/9. Function/2. Function With Parameter.php -------------------------------------------------------------------------------- /9. Function/3. Function Return Multiple Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/9. Function/3. Function Return Multiple Value.php -------------------------------------------------------------------------------- /9. Function/4. Function Return Global Variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/9. Function/4. Function Return Global Variable.php -------------------------------------------------------------------------------- /9. Function/5. Function Parameter List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/9. Function/5. Function Parameter List.php -------------------------------------------------------------------------------- /9. Function/6. Anonymous Function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/9. Function/6. Anonymous Function.php -------------------------------------------------------------------------------- /9. Function/7. Function Parameter Function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/9. Function/7. Function Parameter Function.php -------------------------------------------------------------------------------- /9. Function/8. Closure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/9. Function/8. Closure.php -------------------------------------------------------------------------------- /9. Function/9. Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/9. Function/9. Generator.php -------------------------------------------------------------------------------- /Example - Ajax/crudclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Ajax/crudclass.php -------------------------------------------------------------------------------- /Example - Ajax/getuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Ajax/getuser.php -------------------------------------------------------------------------------- /Example - Ajax/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Ajax/index.php -------------------------------------------------------------------------------- /Example - OOP/OOP10_AssociativeArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP10_AssociativeArray.php -------------------------------------------------------------------------------- /Example - OOP/OOP11_Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP11_Fetch.php -------------------------------------------------------------------------------- /Example - OOP/OOP12_PreparedStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP12_PreparedStatement.php -------------------------------------------------------------------------------- /Example - OOP/OOP13_FetchStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP13_FetchStyle.php -------------------------------------------------------------------------------- /Example - OOP/OOP14_FetchStyleBoth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP14_FetchStyleBoth.php -------------------------------------------------------------------------------- /Example - OOP/OOP15_FetchStyleLazy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP15_FetchStyleLazy.php -------------------------------------------------------------------------------- /Example - OOP/OOP16_FetchStyleObj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP16_FetchStyleObj.php -------------------------------------------------------------------------------- /Example - OOP/OOP1_ClassAndObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP1_ClassAndObject.php -------------------------------------------------------------------------------- /Example - OOP/OOP2_ConstructFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP2_ConstructFunction.php -------------------------------------------------------------------------------- /Example - OOP/OOP3_Inheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP3_Inheritance.php -------------------------------------------------------------------------------- /Example - OOP/OOP4_FunctionOverriding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP4_FunctionOverriding.php -------------------------------------------------------------------------------- /Example - OOP/OOP5_AccessModifierPublic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP5_AccessModifierPublic.php -------------------------------------------------------------------------------- /Example - OOP/OOP6_AccessModifierPrivate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP6_AccessModifierPrivate.php -------------------------------------------------------------------------------- /Example - OOP/OOP7_AccessModifierPrivate2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP7_AccessModifierPrivate2.php -------------------------------------------------------------------------------- /Example - OOP/OOP8_AccessModifierProtected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP8_AccessModifierProtected.php -------------------------------------------------------------------------------- /Example - OOP/OOP9_IndexedArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/OOP9_IndexedArray.php -------------------------------------------------------------------------------- /Example - OOP/lib/crudclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/lib/crudclass.php -------------------------------------------------------------------------------- /Example - OOP/oop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/oop.sql -------------------------------------------------------------------------------- /Example - OOP/pdo_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/pdo_delete.php -------------------------------------------------------------------------------- /Example - OOP/pdo_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/pdo_insert.php -------------------------------------------------------------------------------- /Example - OOP/pdo_select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/pdo_select.php -------------------------------------------------------------------------------- /Example - OOP/pdo_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - OOP/pdo_update.php -------------------------------------------------------------------------------- /Example - Web Application/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Example - Web Application/bootstrap/css/main.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | margin-top:75px; 4 | } -------------------------------------------------------------------------------- /Example - Web Application/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Example - Web Application/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Example - Web Application/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Example - Web Application/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Example - Web Application/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Example - Web Application/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Example - Web Application/crudclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/crudclass.php -------------------------------------------------------------------------------- /Example - Web Application/dbconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/dbconfig.php -------------------------------------------------------------------------------- /Example - Web Application/edit_record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/edit_record.php -------------------------------------------------------------------------------- /Example - Web Application/hapus_record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/hapus_record.php -------------------------------------------------------------------------------- /Example - Web Application/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/index.php -------------------------------------------------------------------------------- /Example - Web Application/tambah_record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Example - Web Application/tambah_record.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Sanitazion - Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Sanitazion - Email.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Sanitazion - Float.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Sanitazion - Float.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Sanitazion - Integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Sanitazion - Integer.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Sanitazion - String.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Sanitazion - String.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Sanitazion - URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Sanitazion - URL.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Validation - Boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Validation - Boolean.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Validation - Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Validation - Email.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Validation - Integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Validation - Integer.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Validation - Min Max Integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Validation - Min Max Integer.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Validation - String Length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Validation - String Length.php -------------------------------------------------------------------------------- /FIlter & Validation/Filter Validation - URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/FIlter & Validation/Filter Validation - URL.php -------------------------------------------------------------------------------- /Hash Function/Hash - ADLER32() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - ADLER32() Algorithm.php -------------------------------------------------------------------------------- /Hash Function/Hash - GOST() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - GOST() Algorithm.php -------------------------------------------------------------------------------- /Hash Function/Hash - HAVAL192() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - HAVAL192() Algorithm.php -------------------------------------------------------------------------------- /Hash Function/Hash - MD2() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - MD2() Algorithm.php -------------------------------------------------------------------------------- /Hash Function/Hash - MD4() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - MD4() Algorithm.php -------------------------------------------------------------------------------- /Hash Function/Hash - MD5() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - MD5() Algorithm.php -------------------------------------------------------------------------------- /Hash Function/Hash - RIPEMD320() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - RIPEMD320() Algorithm.php -------------------------------------------------------------------------------- /Hash Function/Hash - SHA512() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - SHA512() Algorithm.php -------------------------------------------------------------------------------- /Hash Function/Hash - SNEFRU() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - SNEFRU() Algorithm.php -------------------------------------------------------------------------------- /Hash Function/Hash - TIGER160() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - TIGER160() Algorithm.php -------------------------------------------------------------------------------- /Hash Function/Hash - Whirlpool() Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Hash Function/Hash - Whirlpool() Algorithm.php -------------------------------------------------------------------------------- /Ideas/Class-Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Ideas/Class-Error.php -------------------------------------------------------------------------------- /Math Function/Math - Pow().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Math Function/Math - Pow().php -------------------------------------------------------------------------------- /Math Function/Math - exp().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Math Function/Math - exp().php -------------------------------------------------------------------------------- /Math Function/Math - floor().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Math Function/Math - floor().php -------------------------------------------------------------------------------- /Math Function/Math - fmod().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Math Function/Math - fmod().php -------------------------------------------------------------------------------- /Math Function/Math - min().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Math Function/Math - min().php -------------------------------------------------------------------------------- /Math Function/Math - round().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Math Function/Math - round().php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/README.md -------------------------------------------------------------------------------- /Snippet/PreventAccessTwice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Snippet/PreventAccessTwice.php -------------------------------------------------------------------------------- /Socket Programming/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Socket Programming/client.php -------------------------------------------------------------------------------- /Socket Programming/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Socket Programming/server.php -------------------------------------------------------------------------------- /Time/Time - strtotime().php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/Time/Time - strtotime().php -------------------------------------------------------------------------------- /TinjuCepatOOPdenganPHP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gungunfebrianza/Mastering-PHP7/HEAD/TinjuCepatOOPdenganPHP.pdf --------------------------------------------------------------------------------