PHP学习笔记1-恒量,函数
PHP学习笔记1-常量,函数
常量:使用const(php5)声明,只能被赋值一次,php5以下版本使用define;
<span style="color: #008080;">1</span> <span style="color: #000000;">php</span><span style="color: #008080;">2</span> <span style="color: #0000ff;">const</span> THE_VALUE = 100;<span style="color: #008000;">//</span><span style="color: #008000;">PHP5中才有const</span><span style="color: #008080;">3</span> <span style="color: #0000ff;">echo</span><span style="color: #000000;"> THE_VALUE;</span><span style="color: #008080;">4</span> <span style="color: #008080;">5</span> <span style="color: #008080;">define</span>('THE_VALUE',200);<span style="color: #008000;">//</span><span style="color: #008000;">低于PHP5的老版本可以使用define</span><span style="color: #008080;">6</span> <span style="color: #0000ff;">echo</span> THE_VALUE;
函数:包装了很多功能的代码块;
优点:便于在别处调用


<span style="color: #008080;"> 1</span> <span style="color: #000000;">php</span><span style="color: #008080;"> 2</span> <span style="color: #008080;"> 3</span> <span style="color: #0000ff;">function</span><span style="color: #000000;"> traceHelloPHP(){</span><span style="color: #008080;"> 4</span> <span style="color: #0000ff;">echo</span> 'Hello PHP!'<span style="color: #000000;">;</span><span style="color: #008080;"> 5</span> <span style="color: #0000ff;">echo</span> '<br>'<span style="color: #000000;">;</span><span style="color: #008080;"> 6</span> <span style="color: #0000ff;">echo</span> 'Hello World!'<span style="color: #000000;">;</span><span style="color: #008080;"> 7</span> <span style="color: #0000ff;">echo</span> '<br>'<span style="color: #000000;">;</span><span style="color: #008080;"> 8</span> <span style="color: #000000;">}</span><span style="color: #008080;"> 9</span> <span style="color: #000000;">traceHelloPHP();</span><span style="color: #008080;">10</span> <span style="color: #008080;">11</span> <span style="color: #008000;">//</span><span style="color: #008000;">函数的另外一种执行方式</span><span style="color: #008080;">12</span> <span style="color: #800080;">$func</span> = 'traceHelloPHP';<span style="color: #008000;">//</span><span style="color: #008000;">把函数当成参数传递,e.g.回调方法</span><span style="color: #008080;">13</span> <span style="color: #800080;">$func</span><span style="color: #000000;">();</span><span style="color: #008080;">14</span> <span style="color: #008080;">15</span> <span style="color: #008000;">//</span><span style="color: #008000;">函数的传入参数--单个传入参数</span><span style="color: #008080;">16</span> <span style="color: #0000ff;">function</span> sayHelloTo(<span style="color: #800080;">$name</span><span style="color: #000000;">){</span><span style="color: #008080;">17</span> <span style="color: #0000ff;">echo</span> 'Hello '.<span style="color: #800080;">$name</span>.'<br>'<span style="color: #000000;">;</span><span style="color: #008080;">18</span> <span style="color: #000000;">}</span><span style="color: #008080;">19</span> sayHelloTo('Vito'<span style="color: #000000;">);</span><span style="color: #008080;">20</span> <span style="color: #008080;">21</span> <span style="color: #008000;">//</span><span style="color: #008000;">函数的传入参数--多个传入参数</span><span style="color: #008080;">22</span> <span style="color: #0000ff;">function</span> traceNum(<span style="color: #800080;">$a</span>,<span style="color: #800080;">$b</span><span style="color: #000000;">){</span><span style="color: #008080;">23</span> <span style="color: #008000;">//</span><span style="color: #008000;"> echo 'a = '.$a.', b = '.$b.'<br>';</span><span style="color: #008080;">24</span> <span style="color: #0000ff;">echo</span> "a = <span style="color: #800080;">$a</span>,b = <span style="color: #800080;">$b</span>";<span style="color: #008000;">//</span><span style="color: #008000;">较为简便的写法</span><span style="color: #008080;">25</span> <span style="color: #000000;">}</span><span style="color: #008080;">26</span> traceNum(2,3<span style="color: #000000;">);</span><span style="color: #008080;">27</span> <span style="color: #008080;">28</span> <span style="color: #0000ff;">function</span> add(<span style="color: #800080;">$a</span>,<span style="color: #800080;">$b</span><span style="color: #000000;">){</span><span style="color: #008080;">29</span> <span style="color: #0000ff;">return</span> <span style="color: #800080;">$a</span>+<span style="color: #800080;">$b</span>;<span style="color: #008000;">//</span><span style="color: #008000;">返回值</span><span style="color: #008080;">30</span> <span style="color: #000000;">}</span><span style="color: #008080;">31</span> <span style="color: #0000ff;">echo</span> add(10,2);

Outils d'IA chauds

Undresser.AI Undress
Application basée sur l'IA pour créer des photos de nu réalistes

AI Clothes Remover
Outil d'IA en ligne pour supprimer les vêtements des photos.

Undress AI Tool
Images de déshabillage gratuites

Clothoff.io
Dissolvant de vêtements AI

AI Hentai Generator
Générez AI Hentai gratuitement.

Article chaud

Outils chauds

Bloc-notes++7.3.1
Éditeur de code facile à utiliser et gratuit

SublimeText3 version chinoise
Version chinoise, très simple à utiliser

Envoyer Studio 13.0.1
Puissant environnement de développement intégré PHP

Dreamweaver CS6
Outils de développement Web visuel

SublimeText3 version Mac
Logiciel d'édition de code au niveau de Dieu (SublimeText3)

PHP 8.4 apporte plusieurs nouvelles fonctionnalités, améliorations de sécurité et de performances avec une bonne quantité de dépréciations et de suppressions de fonctionnalités. Ce guide explique comment installer PHP 8.4 ou mettre à niveau vers PHP 8.4 sur Ubuntu, Debian ou leurs dérivés. Bien qu'il soit possible de compiler PHP à partir des sources, son installation à partir d'un référentiel APT comme expliqué ci-dessous est souvent plus rapide et plus sécurisée car ces référentiels fourniront les dernières corrections de bogues et mises à jour de sécurité à l'avenir.

Travailler avec la base de données dans CakePHP est très simple. Nous comprendrons les opérations CRUD (Créer, Lire, Mettre à jour, Supprimer) dans ce chapitre.

Pour travailler avec la date et l'heure dans cakephp4, nous allons utiliser la classe FrozenTime disponible.

Pour travailler sur le téléchargement de fichiers, nous allons utiliser l'assistant de formulaire. Voici un exemple de téléchargement de fichiers.

CakePHP est un framework open source pour PHP. Il vise à faciliter grandement le développement, le déploiement et la maintenance d'applications. CakePHP est basé sur une architecture de type MVC à la fois puissante et facile à appréhender. Modèles, vues et contrôleurs gu

Le validateur peut être créé en ajoutant les deux lignes suivantes dans le contrôleur.

Se connecter à CakePHP est une tâche très simple. Il vous suffit d'utiliser une seule fonction. Vous pouvez enregistrer les erreurs, les exceptions, les activités des utilisateurs, les actions entreprises par les utilisateurs, pour tout processus en arrière-plan comme cronjob. La journalisation des données dans CakePHP est facile. La fonction log() est fournie

Visual Studio Code, également connu sous le nom de VS Code, est un éditeur de code source gratuit – ou environnement de développement intégré (IDE) – disponible pour tous les principaux systèmes d'exploitation. Avec une large collection d'extensions pour de nombreux langages de programmation, VS Code peut être c
