Files
freeCodeCamp/guide/arabic/php/conditionals/index.md
2019-06-20 16:59:02 -05:00

1.4 KiB

title, localeTitle
title localeTitle
Conditionals الشرطية

الشرطية

مكتوبة الشرطية في PHP باستخدام if ، elseif ، بناء الجملة else . يتيح لك استخدام الشروط الشرطية تنفيذ إجراءات مختلفة بناءً على المدخلات والقيم المختلفة المقدمة لصفحة في وقت التشغيل. في PHP الشرطي وغالبا ما يشار إليها باسم هياكل التحكم.

إذا

<?php
if ($_GET['name'] = "freecodecamp"){
  echo "You viewed the freeCodeCamp Page!";
}

ELSEIF

<?php
if ($_GET['name'] = "freecodecamp"){
  echo "You viewed the freeCodeCamp Page!";
} elseif ($_GET['name'] = "freecodecampguide"){
  echo "You viewed the freeCodeCamp Guide Page!";
}

آخر

<?php
if ($_GET['name'] = "freecodecamp"){
  echo "You viewed the freeCodeCamp Page!";
} elseif ($_GET['name'] = "freecodecampguide"){
  echo "You viewed the freeCodeCamp Guide Page!";
} else {
  echo "You viewed a page that does not exist yet!";
}

ملحوظة

في الحالات التي يكون لديك فيها الكثير من الشروط المحتملة ، قد ترغب في استخدام بيان التبديل .

معلومات اكثر: