{"id":19606736,"url":"https://github.com/learnwithfair/php-documentation","last_synced_at":"2026-06-17T07:32:20.384Z","repository":{"id":237944269,"uuid":"795544076","full_name":"learnwithfair/php-documentation","owner":"learnwithfair","description":"php-documentation with  [learnwithfair, Learn with fair, Rahatul Rabbi, Md Rahatul Rabbi ,rahatulrabbi]","archived":false,"fork":false,"pushed_at":"2024-05-03T14:08:06.000Z","size":1,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-26T16:49:53.771Z","etag":null,"topics":["documentation","learn-with-fair","learnwithfair","php","programming-language","rahatul-rabbi","rahatulrabbi","web-development"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/learnwithfair.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-03T14:05:25.000Z","updated_at":"2024-05-03T14:52:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"57c2754a-4496-46ed-ab94-5b24d10f74af","html_url":"https://github.com/learnwithfair/php-documentation","commit_stats":null,"previous_names":["learnwithfair/php-documentation"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/learnwithfair/php-documentation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learnwithfair%2Fphp-documentation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learnwithfair%2Fphp-documentation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learnwithfair%2Fphp-documentation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learnwithfair%2Fphp-documentation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/learnwithfair","download_url":"https://codeload.github.com/learnwithfair/php-documentation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/learnwithfair%2Fphp-documentation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34439295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["documentation","learn-with-fair","learnwithfair","php","programming-language","rahatul-rabbi","rahatulrabbi","web-development"],"created_at":"2024-11-11T10:07:04.191Z","updated_at":"2026-06-17T07:32:20.370Z","avatar_url":"https://github.com/learnwithfair.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# PHP-DOCUMENTATION\n\n[![Youtube][youtube-shield]][youtube-url]\n[![Facebook][facebook-shield]][facebook-url]\n[![Instagram][instagram-shield]][instagram-url]\n[![LinkedIn][linkedin-shield]][linkedin-url]\n\nThanks for visiting my GitHub account!\n\n\u003cimg src =\"https://pngimg.com/uploads/php/php_PNG10.png\" height = \"200px\" width = \"180px\"/\u003e **Hypertext Preprocessor (PHP)** is a general-purpose scripting language geared towards web development. It was created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995. The PHP reference implementation is now produced by the PHP Group. PHP was originally an abbreviation of Personal Home Page, but it now stands for the recursive initialism PHP: Hypertext Preprocessor.\n\n### See More\n\n- Visit-\u003e https://www.w3schools.com/php/php_intro.asp\n- Visit -\u003e https://www.tutorialspoint.com/php/index.htm\n\n### [Code-Example](https://github.com/learnwithfair/PHP-Code)\n\n## Source Code (Download)\n\n[Click Here](https://mega.nz/folder/RGFiUApD#PoKIVCwF8IkQhE2PHw1XxQ)\n\n## Required Software\n\n- Xampp [Download](https://www.apachefriends.org/download.html)\n- Visual Studio Code [Download](https://code.visualstudio.com/download)\n\n## Basic Syntax\n\n```php\n\u003c?php\n// Code tobe excuted\necho \"Rahatul Rabbi\";\n?\u003e\n```\n\n## Error Checker\n\n```bash\nini_set('display_errors', 1);\nini_set('display_startup_errors', 1);\nerror_reporting(E_ALL);\n```\n\n## Date Check\n\n```php\n\u003c?php\n\n        $date1 = date( 'Y-m-d', strtotime( \"yesterday\" ) );\n        $date2 = date( 'Y-m-d', strtotime( \"-2 days\" ) );\n        $date3 = date( 'Y-m-d', strtotime( \"-3 days\" ) );\n        $date4 = date( 'Y-m-d', strtotime( \"-4 days\" ) );\n        $date5 = date( 'Y-m-d', strtotime( \"-5 days\" ) );\n        $date6 = date( 'Y-m-d', strtotime( \"-6 days\" ) );\n\n        echo $date1.\"\u003c/br\u003e\";\n        echo $date2.\"\u003c/br\u003e\";\n        echo $date3.\"\u003c/br\u003e\";\n        echo $date4.\"\u003c/br\u003e\";\n        echo $date5.\"\u003c/br\u003e\";\n        echo $date6.\"\u003c/br\u003e\";\n\n?\u003e\n\n\u003c?php\n\n        $from_date = date( 'Y-m-d', strtotime( \"-30 days\" ) );\n        $to_date    = date( 'Y-m-d', strtotime( \"-6 days\" ) );\n        echo $from_date.'\u003c/br\u003e';\n        echo $to_date;\n?\u003e\n```\n\n## Follow Me\n\n[\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/github.svg' alt='github' height='40'\u003e](https://github.com/learnwithfair) [\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/facebook.svg' alt='facebook' height='40'\u003e](https://www.facebook.com/learnwithfair/) [\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/instagram.svg' alt='instagram' height='40'\u003e](https://www.instagram.com/learnwithfair/) [\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/twitter.svg' alt='twitter' height='40'\u003e](https://www.twiter.com/learnwithfair/) [\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/youtube.svg' alt='YouTube' height='40'\u003e](https://www.youtube.com/@learnwithfair)\n\n\u003c!-- MARKDOWN LINKS \u0026 IMAGES --\u003e\n\n[youtube-shield]: https://img.shields.io/badge/-Youtube-black.svg?style=flat-square\u0026logo=youtube\u0026color=555\u0026logoColor=white\n[youtube-url]: https://youtube.com/@learnwithfair\n[facebook-shield]: https://img.shields.io/badge/-Facebook-black.svg?style=flat-square\u0026logo=facebook\u0026color=555\u0026logoColor=white\n[facebook-url]: https://facebook.com/learnwithfair\n[instagram-shield]: https://img.shields.io/badge/-Instagram-black.svg?style=flat-square\u0026logo=instagram\u0026color=555\u0026logoColor=white\n[instagram-url]: https://instagram.com/learnwithfair\n[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=flat-square\u0026logo=linkedin\u0026colorB=555\n[linkedin-url]: https://linkedin.com/company/learnwithfair\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flearnwithfair%2Fphp-documentation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flearnwithfair%2Fphp-documentation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flearnwithfair%2Fphp-documentation/lists"}