search
HomeBackend DevelopmentPHP TutorialCommon functions and keywords in the basic part of PHP

  1. bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]] ]] )
  2. explain:This requires that you place calls to this function prior to any output, including and tags as well as any whitespace.
  3. example:setcookie("TestCookie", $value, time ()+3600);
  4. bool define ( string $name , mixed $value [, bool $case_insensitive = false ] ) //Define a constant
  5. const CONSTANT = 'Hello World'; //Use the practical keyword const to define a constant Constant, the effect is the same
  6. example:define("CONSTANT", "Hello world.");
  7. bool defined ( string $name ) //Check whether a constant exists
  8. bool isset ( mixed $var [, mixed $ ... ] ) //Check if a variable exists
  9. void unset ( mixed $var [, mixed $... ] ) // Release a variable
  10. bool function_exists ( string $function_name ) // Check if a function Exists
  11. string get_class ([ object $obj ] ) //Get the class name of an object
  12. array get_object_vars ( object $obj ) // Return an associative array composed of object attributes
  13. bool file_exists ( string $filename ) // Check if the file or directory exists
  14. Comparison operator
  15. $a == $b equals, if $a equals $b after type conversion.
  16. $a === $b is congruent if $a is equal to $b and their types are also the same.
  17. $a != $b is not equal, if $a is not equal to $b after type conversion.
  18. $a $b is not equal, if $a is not equal to $b after type conversion.
  19. $a !== $b is not congruent if $a is not equal to $b, or their types are different.
  20. $a $a > $b is greater than, if $a is strictly greater than $b.
  21. $a $a >= $b is greater than or equal to $a if $a is greater than or equal to $b.
  22. PHP supports an error control operator: @. When placed before a PHP expression, any error message that expression may produce is ignored.
  23. Execution operator, backtick operator is invalid when safe mode is activated or shell_exec() is turned off.
  24. $output = `ls -al`;
  25. echo "
    $output
    ";
  26. ?>
  27. There are two string operators . The first is the concatenation operator ("."), which returns the concatenated string of its left and right arguments. The second is the concatenation assignment operator (".="), which appends the right argument to the left argument.
  28. Array operator
  29. $a + $b Union Union of $a and $b.
  30. $a == $b is equal TRUE if $a and $b have the same key/value pair.
  31. $a === $b is congruent TRUE if $a and $b have the same key/value pairs and are of the same order and type.
  32. $a != $b is not equal TRUE if $a is not equal to $b.
  33. $a $b is not equal TRUE if $a is not equal to $b.
  34. $a !== $b is not equal. TRUE if $a is not equal to $b.
  35. The type operator instanceof is used to determine whether a PHP variable belongs to an instance of a certain class:
  36. class MyClass{}
  37. class NotMyClass{}
  38. $a = new MyClass;
  39. var_dump($a instanceof MyClass);
  40. var_dump($a instanceof NotMyClass);
  41. ?>
  42. The above routine will output:
  43. bool(true)
  44. bool(false)
  45. bool is_a ( object $object , string $class_name [, bool $ allow_string = FALSE ] ) //Return TRUE if the object belongs to this class or this class is the parent class of this object
  46. foreach loop array or object
  47. foreach (array_expression as $value)
  48. statement
  49. foreach (array_expression as $key => $value)
  50. statement
  51. require and include are almost exactly the same, except for the way failure is handled. require generates an E_COMPILE_ERROR level error when an error occurs. In other words, it will cause the script to abort and include will only generate a warning (E_WARNING), and the script will continue to run.
  52. include 'vars.php';
  53. The require_once statement is exactly the same as the require statement. The only difference is that PHP will check whether the file has already been included, and if so, it will not include it again.
  54. goto: (compared to C language, it is a castrated product)
  55. The goto operator can be used to jump to another location in the program.The target position can be marked with the target name followed by a colon, and the jump instruction is the goto followed by the mark of the target position.
  56. goto in PHP has certain limitations. The target location can only be in the same file and scope, which means that it cannot jump out of a function or class method, nor can it jump into another function. It also cannot jump into any loop or switch structure.
  57. You can break out of a loop or switch. The usual usage is to use goto instead of multiple levels of break.
  58. goto a;
  59. echo 'Foo';
  60. a:
  61. echo 'Bar';
  62. ?>
  63. The above routine will output:
  64. Bar
Copy code

php


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),