[{"data":1,"prerenderedAt":1699},["ShallowReactive",2],{"content-all-\u002Fphp\u002Fphp-fundamental\u002Fflow-control":3,"related-\u002Fphp\u002Fphp-fundamental\u002Fflow-control":1431,"sidebar-content":1660},[4],{"_path":5,"_dir":6,"_draft":7,"_partial":7,"_locale":8,"title":9,"description":10,"tags":11,"date":15,"weight":16,"body":17,"_type":1425,"_id":1426,"_source":1427,"_file":1428,"_stem":1429,"_extension":1430},"\u002Fphp\u002Fphp-fundamental\u002Fflow-control","php-fundamental",false,"","PHP Flow Control","Essential PHP flow control structures and patterns",[12,13,14],"php","backend","flow control","2026-05-30",10,{"type":18,"children":19,"toc":1417},"root",[20,29,35,138,145,150,344,350,362,528,534,539,933,939,944,1411],{"type":21,"tag":22,"props":23,"children":25},"element","h2",{"id":24},"flow-control",[26],{"type":27,"value":28},"text","Flow Control",{"type":21,"tag":30,"props":31,"children":32},"p",{},[33],{"type":27,"value":34},"In PHP, flow control structures allow you to control the execution of your code based on certain conditions or to repeat a block of code multiple times. The main flow control structures in PHP include:",{"type":21,"tag":36,"props":37,"children":38},"ul",{},[39,74,106],{"type":21,"tag":40,"props":41,"children":42},"li",{},[43,45,52,54,60,61,67,68],{"type":27,"value":44},"Conditional statements: ",{"type":21,"tag":46,"props":47,"children":49},"code",{"className":48},[],[50],{"type":27,"value":51},"if",{"type":27,"value":53},", ",{"type":21,"tag":46,"props":55,"children":57},{"className":56},[],[58],{"type":27,"value":59},"else",{"type":27,"value":53},{"type":21,"tag":46,"props":62,"children":64},{"className":63},[],[65],{"type":27,"value":66},"elseif",{"type":27,"value":53},{"type":21,"tag":46,"props":69,"children":71},{"className":70},[],[72],{"type":27,"value":73},"switch",{"type":21,"tag":40,"props":75,"children":76},{},[77,79,85,86,92,93,99,100],{"type":27,"value":78},"Loops: ",{"type":21,"tag":46,"props":80,"children":82},{"className":81},[],[83],{"type":27,"value":84},"for",{"type":27,"value":53},{"type":21,"tag":46,"props":87,"children":89},{"className":88},[],[90],{"type":27,"value":91},"foreach",{"type":27,"value":53},{"type":21,"tag":46,"props":94,"children":96},{"className":95},[],[97],{"type":27,"value":98},"while",{"type":27,"value":53},{"type":21,"tag":46,"props":101,"children":103},{"className":102},[],[104],{"type":27,"value":105},"do-while",{"type":21,"tag":40,"props":107,"children":108},{},[109,111,117,118,124,125,131,132],{"type":27,"value":110},"Jump statements: ",{"type":21,"tag":46,"props":112,"children":114},{"className":113},[],[115],{"type":27,"value":116},"break",{"type":27,"value":53},{"type":21,"tag":46,"props":119,"children":121},{"className":120},[],[122],{"type":27,"value":123},"continue",{"type":27,"value":53},{"type":21,"tag":46,"props":126,"children":128},{"className":127},[],[129],{"type":27,"value":130},"return",{"type":27,"value":53},{"type":21,"tag":46,"props":133,"children":135},{"className":134},[],[136],{"type":27,"value":137},"goto",{"type":21,"tag":139,"props":140,"children":142},"h3",{"id":141},"conditional-statements",[143],{"type":27,"value":144},"Conditional Statements",{"type":21,"tag":30,"props":146,"children":147},{},[148],{"type":27,"value":149},"Conditional statements allow you to execute different blocks of code based on certain conditions.",{"type":21,"tag":151,"props":152,"children":155},"pre",{"className":153,"code":154,"language":12,"meta":8,"style":8},"language-php shiki shiki-themes github-light github-dark","$age = 20;\nif ($age \u003C 18) {\n    echo \"You are a minor.\";\n} elseif ($age >= 18 && $age \u003C 65) {\n    echo \"You are an adult.\";\n} else {\n    echo \"You are a senior.\";\n}\n",[156],{"type":21,"tag":46,"props":157,"children":158},{"__ignoreMap":8},[159,188,216,235,284,301,318,335],{"type":21,"tag":160,"props":161,"children":164},"span",{"class":162,"line":163},"line",1,[165,171,177,183],{"type":21,"tag":160,"props":166,"children":168},{"style":167},"--shiki-default:#24292E;--shiki-dark:#E1E4E8",[169],{"type":27,"value":170},"$age ",{"type":21,"tag":160,"props":172,"children":174},{"style":173},"--shiki-default:#D73A49;--shiki-dark:#F97583",[175],{"type":27,"value":176},"=",{"type":21,"tag":160,"props":178,"children":180},{"style":179},"--shiki-default:#005CC5;--shiki-dark:#79B8FF",[181],{"type":27,"value":182}," 20",{"type":21,"tag":160,"props":184,"children":185},{"style":167},[186],{"type":27,"value":187},";\n",{"type":21,"tag":160,"props":189,"children":191},{"class":162,"line":190},2,[192,196,201,206,211],{"type":21,"tag":160,"props":193,"children":194},{"style":173},[195],{"type":27,"value":51},{"type":21,"tag":160,"props":197,"children":198},{"style":167},[199],{"type":27,"value":200}," ($age ",{"type":21,"tag":160,"props":202,"children":203},{"style":173},[204],{"type":27,"value":205},"\u003C",{"type":21,"tag":160,"props":207,"children":208},{"style":179},[209],{"type":27,"value":210}," 18",{"type":21,"tag":160,"props":212,"children":213},{"style":167},[214],{"type":27,"value":215},") {\n",{"type":21,"tag":160,"props":217,"children":219},{"class":162,"line":218},3,[220,225,231],{"type":21,"tag":160,"props":221,"children":222},{"style":179},[223],{"type":27,"value":224},"    echo",{"type":21,"tag":160,"props":226,"children":228},{"style":227},"--shiki-default:#032F62;--shiki-dark:#9ECBFF",[229],{"type":27,"value":230}," \"You are a minor.\"",{"type":21,"tag":160,"props":232,"children":233},{"style":167},[234],{"type":27,"value":187},{"type":21,"tag":160,"props":236,"children":238},{"class":162,"line":237},4,[239,244,248,252,257,261,266,271,275,280],{"type":21,"tag":160,"props":240,"children":241},{"style":167},[242],{"type":27,"value":243},"} ",{"type":21,"tag":160,"props":245,"children":246},{"style":173},[247],{"type":27,"value":66},{"type":21,"tag":160,"props":249,"children":250},{"style":167},[251],{"type":27,"value":200},{"type":21,"tag":160,"props":253,"children":254},{"style":173},[255],{"type":27,"value":256},">=",{"type":21,"tag":160,"props":258,"children":259},{"style":179},[260],{"type":27,"value":210},{"type":21,"tag":160,"props":262,"children":263},{"style":173},[264],{"type":27,"value":265}," &&",{"type":21,"tag":160,"props":267,"children":268},{"style":167},[269],{"type":27,"value":270}," $age ",{"type":21,"tag":160,"props":272,"children":273},{"style":173},[274],{"type":27,"value":205},{"type":21,"tag":160,"props":276,"children":277},{"style":179},[278],{"type":27,"value":279}," 65",{"type":21,"tag":160,"props":281,"children":282},{"style":167},[283],{"type":27,"value":215},{"type":21,"tag":160,"props":285,"children":287},{"class":162,"line":286},5,[288,292,297],{"type":21,"tag":160,"props":289,"children":290},{"style":179},[291],{"type":27,"value":224},{"type":21,"tag":160,"props":293,"children":294},{"style":227},[295],{"type":27,"value":296}," \"You are an adult.\"",{"type":21,"tag":160,"props":298,"children":299},{"style":167},[300],{"type":27,"value":187},{"type":21,"tag":160,"props":302,"children":304},{"class":162,"line":303},6,[305,309,313],{"type":21,"tag":160,"props":306,"children":307},{"style":167},[308],{"type":27,"value":243},{"type":21,"tag":160,"props":310,"children":311},{"style":173},[312],{"type":27,"value":59},{"type":21,"tag":160,"props":314,"children":315},{"style":167},[316],{"type":27,"value":317}," {\n",{"type":21,"tag":160,"props":319,"children":321},{"class":162,"line":320},7,[322,326,331],{"type":21,"tag":160,"props":323,"children":324},{"style":179},[325],{"type":27,"value":224},{"type":21,"tag":160,"props":327,"children":328},{"style":227},[329],{"type":27,"value":330}," \"You are a senior.\"",{"type":21,"tag":160,"props":332,"children":333},{"style":167},[334],{"type":27,"value":187},{"type":21,"tag":160,"props":336,"children":338},{"class":162,"line":337},8,[339],{"type":21,"tag":160,"props":340,"children":341},{"style":167},[342],{"type":27,"value":343},"}\n",{"type":21,"tag":139,"props":345,"children":347},{"id":346},"switch-statement",[348],{"type":27,"value":349},"Switch Statement",{"type":21,"tag":30,"props":351,"children":352},{},[353,355,360],{"type":27,"value":354},"The ",{"type":21,"tag":46,"props":356,"children":358},{"className":357},[],[359],{"type":27,"value":73},{"type":27,"value":361}," statement is used to perform different actions based on different conditions.",{"type":21,"tag":151,"props":363,"children":365},{"className":153,"code":364,"language":12,"meta":8,"style":8},"$day = \"Monday\";\nswitch ($day) {\n    case \"Monday\":\n        echo \"Today is Monday.\";\n        break;\n    case \"Tuesday\":\n        echo \"Today is Tuesday.\";\n        break;\n    default:\n        echo \"Today is not Monday or Tuesday.\";\n}\n",[366],{"type":21,"tag":46,"props":367,"children":368},{"__ignoreMap":8},[369,390,402,419,436,448,464,480,491,504,520],{"type":21,"tag":160,"props":370,"children":371},{"class":162,"line":163},[372,377,381,386],{"type":21,"tag":160,"props":373,"children":374},{"style":167},[375],{"type":27,"value":376},"$day ",{"type":21,"tag":160,"props":378,"children":379},{"style":173},[380],{"type":27,"value":176},{"type":21,"tag":160,"props":382,"children":383},{"style":227},[384],{"type":27,"value":385}," \"Monday\"",{"type":21,"tag":160,"props":387,"children":388},{"style":167},[389],{"type":27,"value":187},{"type":21,"tag":160,"props":391,"children":392},{"class":162,"line":190},[393,397],{"type":21,"tag":160,"props":394,"children":395},{"style":173},[396],{"type":27,"value":73},{"type":21,"tag":160,"props":398,"children":399},{"style":167},[400],{"type":27,"value":401}," ($day) {\n",{"type":21,"tag":160,"props":403,"children":404},{"class":162,"line":218},[405,410,414],{"type":21,"tag":160,"props":406,"children":407},{"style":173},[408],{"type":27,"value":409},"    case",{"type":21,"tag":160,"props":411,"children":412},{"style":227},[413],{"type":27,"value":385},{"type":21,"tag":160,"props":415,"children":416},{"style":167},[417],{"type":27,"value":418},":\n",{"type":21,"tag":160,"props":420,"children":421},{"class":162,"line":237},[422,427,432],{"type":21,"tag":160,"props":423,"children":424},{"style":179},[425],{"type":27,"value":426},"        echo",{"type":21,"tag":160,"props":428,"children":429},{"style":227},[430],{"type":27,"value":431}," \"Today is Monday.\"",{"type":21,"tag":160,"props":433,"children":434},{"style":167},[435],{"type":27,"value":187},{"type":21,"tag":160,"props":437,"children":438},{"class":162,"line":286},[439,444],{"type":21,"tag":160,"props":440,"children":441},{"style":173},[442],{"type":27,"value":443},"        break",{"type":21,"tag":160,"props":445,"children":446},{"style":167},[447],{"type":27,"value":187},{"type":21,"tag":160,"props":449,"children":450},{"class":162,"line":303},[451,455,460],{"type":21,"tag":160,"props":452,"children":453},{"style":173},[454],{"type":27,"value":409},{"type":21,"tag":160,"props":456,"children":457},{"style":227},[458],{"type":27,"value":459}," \"Tuesday\"",{"type":21,"tag":160,"props":461,"children":462},{"style":167},[463],{"type":27,"value":418},{"type":21,"tag":160,"props":465,"children":466},{"class":162,"line":320},[467,471,476],{"type":21,"tag":160,"props":468,"children":469},{"style":179},[470],{"type":27,"value":426},{"type":21,"tag":160,"props":472,"children":473},{"style":227},[474],{"type":27,"value":475}," \"Today is Tuesday.\"",{"type":21,"tag":160,"props":477,"children":478},{"style":167},[479],{"type":27,"value":187},{"type":21,"tag":160,"props":481,"children":482},{"class":162,"line":337},[483,487],{"type":21,"tag":160,"props":484,"children":485},{"style":173},[486],{"type":27,"value":443},{"type":21,"tag":160,"props":488,"children":489},{"style":167},[490],{"type":27,"value":187},{"type":21,"tag":160,"props":492,"children":494},{"class":162,"line":493},9,[495,500],{"type":21,"tag":160,"props":496,"children":497},{"style":173},[498],{"type":27,"value":499},"    default",{"type":21,"tag":160,"props":501,"children":502},{"style":167},[503],{"type":27,"value":418},{"type":21,"tag":160,"props":505,"children":506},{"class":162,"line":16},[507,511,516],{"type":21,"tag":160,"props":508,"children":509},{"style":179},[510],{"type":27,"value":426},{"type":21,"tag":160,"props":512,"children":513},{"style":227},[514],{"type":27,"value":515}," \"Today is not Monday or Tuesday.\"",{"type":21,"tag":160,"props":517,"children":518},{"style":167},[519],{"type":27,"value":187},{"type":21,"tag":160,"props":521,"children":523},{"class":162,"line":522},11,[524],{"type":21,"tag":160,"props":525,"children":526},{"style":167},[527],{"type":27,"value":343},{"type":21,"tag":139,"props":529,"children":531},{"id":530},"loops",[532],{"type":27,"value":533},"Loops",{"type":21,"tag":30,"props":535,"children":536},{},[537],{"type":27,"value":538},"Loops allow you to execute a block of code repeatedly as long as a certain condition is met.",{"type":21,"tag":151,"props":540,"children":542},{"className":153,"code":541,"language":12,"meta":8,"style":8},"\u002F\u002F For loop\nfor ($i = 0; $i \u003C 5; $i++) {\n    echo $i;\n}\n\n\u002F\u002F Foreach loop\n$fruits = [\"Apple\", \"Banana\", \"Cherry\"];\nforeach ($fruits as $fruit) {\n    echo $fruit;\n}\n\n\u002F\u002F While loop\n$count = 0;\nwhile ($count \u003C 5) {\n    echo $count;\n    $count++;\n}\n\n\u002F\u002F Do-while loop\n$count = 0;\ndo {\n    echo $count;\n    $count++;\n} while ($count \u003C 5);\n",[543],{"type":21,"tag":46,"props":544,"children":545},{"__ignoreMap":8},[546,555,604,616,623,632,640,685,707,719,726,733,742,763,788,801,818,826,834,843,863,876,888,904],{"type":21,"tag":160,"props":547,"children":548},{"class":162,"line":163},[549],{"type":21,"tag":160,"props":550,"children":552},{"style":551},"--shiki-default:#6A737D;--shiki-dark:#6A737D",[553],{"type":27,"value":554},"\u002F\u002F For loop\n",{"type":21,"tag":160,"props":556,"children":557},{"class":162,"line":190},[558,562,567,571,576,581,585,590,595,600],{"type":21,"tag":160,"props":559,"children":560},{"style":173},[561],{"type":27,"value":84},{"type":21,"tag":160,"props":563,"children":564},{"style":167},[565],{"type":27,"value":566}," ($i ",{"type":21,"tag":160,"props":568,"children":569},{"style":173},[570],{"type":27,"value":176},{"type":21,"tag":160,"props":572,"children":573},{"style":179},[574],{"type":27,"value":575}," 0",{"type":21,"tag":160,"props":577,"children":578},{"style":167},[579],{"type":27,"value":580},"; $i ",{"type":21,"tag":160,"props":582,"children":583},{"style":173},[584],{"type":27,"value":205},{"type":21,"tag":160,"props":586,"children":587},{"style":179},[588],{"type":27,"value":589}," 5",{"type":21,"tag":160,"props":591,"children":592},{"style":167},[593],{"type":27,"value":594},"; $i",{"type":21,"tag":160,"props":596,"children":597},{"style":173},[598],{"type":27,"value":599},"++",{"type":21,"tag":160,"props":601,"children":602},{"style":167},[603],{"type":27,"value":215},{"type":21,"tag":160,"props":605,"children":606},{"class":162,"line":218},[607,611],{"type":21,"tag":160,"props":608,"children":609},{"style":179},[610],{"type":27,"value":224},{"type":21,"tag":160,"props":612,"children":613},{"style":167},[614],{"type":27,"value":615}," $i;\n",{"type":21,"tag":160,"props":617,"children":618},{"class":162,"line":237},[619],{"type":21,"tag":160,"props":620,"children":621},{"style":167},[622],{"type":27,"value":343},{"type":21,"tag":160,"props":624,"children":625},{"class":162,"line":286},[626],{"type":21,"tag":160,"props":627,"children":629},{"emptyLinePlaceholder":628},true,[630],{"type":27,"value":631},"\n",{"type":21,"tag":160,"props":633,"children":634},{"class":162,"line":303},[635],{"type":21,"tag":160,"props":636,"children":637},{"style":551},[638],{"type":27,"value":639},"\u002F\u002F Foreach loop\n",{"type":21,"tag":160,"props":641,"children":642},{"class":162,"line":320},[643,648,652,657,662,666,671,675,680],{"type":21,"tag":160,"props":644,"children":645},{"style":167},[646],{"type":27,"value":647},"$fruits ",{"type":21,"tag":160,"props":649,"children":650},{"style":173},[651],{"type":27,"value":176},{"type":21,"tag":160,"props":653,"children":654},{"style":167},[655],{"type":27,"value":656}," [",{"type":21,"tag":160,"props":658,"children":659},{"style":227},[660],{"type":27,"value":661},"\"Apple\"",{"type":21,"tag":160,"props":663,"children":664},{"style":167},[665],{"type":27,"value":53},{"type":21,"tag":160,"props":667,"children":668},{"style":227},[669],{"type":27,"value":670},"\"Banana\"",{"type":21,"tag":160,"props":672,"children":673},{"style":167},[674],{"type":27,"value":53},{"type":21,"tag":160,"props":676,"children":677},{"style":227},[678],{"type":27,"value":679},"\"Cherry\"",{"type":21,"tag":160,"props":681,"children":682},{"style":167},[683],{"type":27,"value":684},"];\n",{"type":21,"tag":160,"props":686,"children":687},{"class":162,"line":337},[688,692,697,702],{"type":21,"tag":160,"props":689,"children":690},{"style":173},[691],{"type":27,"value":91},{"type":21,"tag":160,"props":693,"children":694},{"style":167},[695],{"type":27,"value":696}," ($fruits ",{"type":21,"tag":160,"props":698,"children":699},{"style":173},[700],{"type":27,"value":701},"as",{"type":21,"tag":160,"props":703,"children":704},{"style":167},[705],{"type":27,"value":706}," $fruit) {\n",{"type":21,"tag":160,"props":708,"children":709},{"class":162,"line":493},[710,714],{"type":21,"tag":160,"props":711,"children":712},{"style":179},[713],{"type":27,"value":224},{"type":21,"tag":160,"props":715,"children":716},{"style":167},[717],{"type":27,"value":718}," $fruit;\n",{"type":21,"tag":160,"props":720,"children":721},{"class":162,"line":16},[722],{"type":21,"tag":160,"props":723,"children":724},{"style":167},[725],{"type":27,"value":343},{"type":21,"tag":160,"props":727,"children":728},{"class":162,"line":522},[729],{"type":21,"tag":160,"props":730,"children":731},{"emptyLinePlaceholder":628},[732],{"type":27,"value":631},{"type":21,"tag":160,"props":734,"children":736},{"class":162,"line":735},12,[737],{"type":21,"tag":160,"props":738,"children":739},{"style":551},[740],{"type":27,"value":741},"\u002F\u002F While loop\n",{"type":21,"tag":160,"props":743,"children":745},{"class":162,"line":744},13,[746,751,755,759],{"type":21,"tag":160,"props":747,"children":748},{"style":167},[749],{"type":27,"value":750},"$count ",{"type":21,"tag":160,"props":752,"children":753},{"style":173},[754],{"type":27,"value":176},{"type":21,"tag":160,"props":756,"children":757},{"style":179},[758],{"type":27,"value":575},{"type":21,"tag":160,"props":760,"children":761},{"style":167},[762],{"type":27,"value":187},{"type":21,"tag":160,"props":764,"children":766},{"class":162,"line":765},14,[767,771,776,780,784],{"type":21,"tag":160,"props":768,"children":769},{"style":173},[770],{"type":27,"value":98},{"type":21,"tag":160,"props":772,"children":773},{"style":167},[774],{"type":27,"value":775}," ($count ",{"type":21,"tag":160,"props":777,"children":778},{"style":173},[779],{"type":27,"value":205},{"type":21,"tag":160,"props":781,"children":782},{"style":179},[783],{"type":27,"value":589},{"type":21,"tag":160,"props":785,"children":786},{"style":167},[787],{"type":27,"value":215},{"type":21,"tag":160,"props":789,"children":791},{"class":162,"line":790},15,[792,796],{"type":21,"tag":160,"props":793,"children":794},{"style":179},[795],{"type":27,"value":224},{"type":21,"tag":160,"props":797,"children":798},{"style":167},[799],{"type":27,"value":800}," $count;\n",{"type":21,"tag":160,"props":802,"children":804},{"class":162,"line":803},16,[805,810,814],{"type":21,"tag":160,"props":806,"children":807},{"style":167},[808],{"type":27,"value":809},"    $count",{"type":21,"tag":160,"props":811,"children":812},{"style":173},[813],{"type":27,"value":599},{"type":21,"tag":160,"props":815,"children":816},{"style":167},[817],{"type":27,"value":187},{"type":21,"tag":160,"props":819,"children":821},{"class":162,"line":820},17,[822],{"type":21,"tag":160,"props":823,"children":824},{"style":167},[825],{"type":27,"value":343},{"type":21,"tag":160,"props":827,"children":829},{"class":162,"line":828},18,[830],{"type":21,"tag":160,"props":831,"children":832},{"emptyLinePlaceholder":628},[833],{"type":27,"value":631},{"type":21,"tag":160,"props":835,"children":837},{"class":162,"line":836},19,[838],{"type":21,"tag":160,"props":839,"children":840},{"style":551},[841],{"type":27,"value":842},"\u002F\u002F Do-while loop\n",{"type":21,"tag":160,"props":844,"children":846},{"class":162,"line":845},20,[847,851,855,859],{"type":21,"tag":160,"props":848,"children":849},{"style":167},[850],{"type":27,"value":750},{"type":21,"tag":160,"props":852,"children":853},{"style":173},[854],{"type":27,"value":176},{"type":21,"tag":160,"props":856,"children":857},{"style":179},[858],{"type":27,"value":575},{"type":21,"tag":160,"props":860,"children":861},{"style":167},[862],{"type":27,"value":187},{"type":21,"tag":160,"props":864,"children":866},{"class":162,"line":865},21,[867,872],{"type":21,"tag":160,"props":868,"children":869},{"style":173},[870],{"type":27,"value":871},"do",{"type":21,"tag":160,"props":873,"children":874},{"style":167},[875],{"type":27,"value":317},{"type":21,"tag":160,"props":877,"children":879},{"class":162,"line":878},22,[880,884],{"type":21,"tag":160,"props":881,"children":882},{"style":179},[883],{"type":27,"value":224},{"type":21,"tag":160,"props":885,"children":886},{"style":167},[887],{"type":27,"value":800},{"type":21,"tag":160,"props":889,"children":891},{"class":162,"line":890},23,[892,896,900],{"type":21,"tag":160,"props":893,"children":894},{"style":167},[895],{"type":27,"value":809},{"type":21,"tag":160,"props":897,"children":898},{"style":173},[899],{"type":27,"value":599},{"type":21,"tag":160,"props":901,"children":902},{"style":167},[903],{"type":27,"value":187},{"type":21,"tag":160,"props":905,"children":907},{"class":162,"line":906},24,[908,912,916,920,924,928],{"type":21,"tag":160,"props":909,"children":910},{"style":167},[911],{"type":27,"value":243},{"type":21,"tag":160,"props":913,"children":914},{"style":173},[915],{"type":27,"value":98},{"type":21,"tag":160,"props":917,"children":918},{"style":167},[919],{"type":27,"value":775},{"type":21,"tag":160,"props":921,"children":922},{"style":173},[923],{"type":27,"value":205},{"type":21,"tag":160,"props":925,"children":926},{"style":179},[927],{"type":27,"value":589},{"type":21,"tag":160,"props":929,"children":930},{"style":167},[931],{"type":27,"value":932},");\n",{"type":21,"tag":139,"props":934,"children":936},{"id":935},"jump-statements",[937],{"type":27,"value":938},"Jump Statements",{"type":21,"tag":30,"props":940,"children":941},{},[942],{"type":27,"value":943},"Jump statements allow you to alter the flow of execution in your code.",{"type":21,"tag":151,"props":945,"children":947},{"className":153,"code":946,"language":12,"meta":8,"style":8},"\u002F\u002F Break statement\nfor ($i = 0; $i \u003C 10; $i++) {\n    if ($i == 5) {\n        break; \u002F\u002F Exit the loop when $i is 5\n    }\n    echo $i;\n}\n\n\u002F\u002F Continue statement\nfor ($i = 0; $i \u003C 10; $i++) {\n    if ($i % 2 == 0) {\n        continue; \u002F\u002F Skip even numbers\n    }\n    echo $i;\n}\n\n\u002F\u002F Return statement\nfunction add($a, $b) {\n    return $a + $b; \u002F\u002F Return the sum of $a and $b\n}\necho add(5, 3); \u002F\u002F Outputs: 8\n\n\u002F\u002F Goto statement\ngoto label;\necho \"This will be skipped.\";\nlabel:\necho \"This will be executed.\";\n\u002F\u002F Outputs: \"This will be executed.\"\n\u002F\u002F Note: The use of `goto` is generally discouraged as it can make code harder to read and maintain.\n",[948],{"type":21,"tag":46,"props":949,"children":950},{"__ignoreMap":8},[951,959,1003,1028,1045,1053,1064,1071,1078,1086,1129,1163,1180,1187,1198,1205,1212,1220,1239,1267,1274,1315,1322,1330,1346,1363,1376,1393,1402],{"type":21,"tag":160,"props":952,"children":953},{"class":162,"line":163},[954],{"type":21,"tag":160,"props":955,"children":956},{"style":551},[957],{"type":27,"value":958},"\u002F\u002F Break statement\n",{"type":21,"tag":160,"props":960,"children":961},{"class":162,"line":190},[962,966,970,974,978,982,986,991,995,999],{"type":21,"tag":160,"props":963,"children":964},{"style":173},[965],{"type":27,"value":84},{"type":21,"tag":160,"props":967,"children":968},{"style":167},[969],{"type":27,"value":566},{"type":21,"tag":160,"props":971,"children":972},{"style":173},[973],{"type":27,"value":176},{"type":21,"tag":160,"props":975,"children":976},{"style":179},[977],{"type":27,"value":575},{"type":21,"tag":160,"props":979,"children":980},{"style":167},[981],{"type":27,"value":580},{"type":21,"tag":160,"props":983,"children":984},{"style":173},[985],{"type":27,"value":205},{"type":21,"tag":160,"props":987,"children":988},{"style":179},[989],{"type":27,"value":990}," 10",{"type":21,"tag":160,"props":992,"children":993},{"style":167},[994],{"type":27,"value":594},{"type":21,"tag":160,"props":996,"children":997},{"style":173},[998],{"type":27,"value":599},{"type":21,"tag":160,"props":1000,"children":1001},{"style":167},[1002],{"type":27,"value":215},{"type":21,"tag":160,"props":1004,"children":1005},{"class":162,"line":218},[1006,1011,1015,1020,1024],{"type":21,"tag":160,"props":1007,"children":1008},{"style":173},[1009],{"type":27,"value":1010},"    if",{"type":21,"tag":160,"props":1012,"children":1013},{"style":167},[1014],{"type":27,"value":566},{"type":21,"tag":160,"props":1016,"children":1017},{"style":173},[1018],{"type":27,"value":1019},"==",{"type":21,"tag":160,"props":1021,"children":1022},{"style":179},[1023],{"type":27,"value":589},{"type":21,"tag":160,"props":1025,"children":1026},{"style":167},[1027],{"type":27,"value":215},{"type":21,"tag":160,"props":1029,"children":1030},{"class":162,"line":237},[1031,1035,1040],{"type":21,"tag":160,"props":1032,"children":1033},{"style":173},[1034],{"type":27,"value":443},{"type":21,"tag":160,"props":1036,"children":1037},{"style":167},[1038],{"type":27,"value":1039},"; ",{"type":21,"tag":160,"props":1041,"children":1042},{"style":551},[1043],{"type":27,"value":1044},"\u002F\u002F Exit the loop when $i is 5\n",{"type":21,"tag":160,"props":1046,"children":1047},{"class":162,"line":286},[1048],{"type":21,"tag":160,"props":1049,"children":1050},{"style":167},[1051],{"type":27,"value":1052},"    }\n",{"type":21,"tag":160,"props":1054,"children":1055},{"class":162,"line":303},[1056,1060],{"type":21,"tag":160,"props":1057,"children":1058},{"style":179},[1059],{"type":27,"value":224},{"type":21,"tag":160,"props":1061,"children":1062},{"style":167},[1063],{"type":27,"value":615},{"type":21,"tag":160,"props":1065,"children":1066},{"class":162,"line":320},[1067],{"type":21,"tag":160,"props":1068,"children":1069},{"style":167},[1070],{"type":27,"value":343},{"type":21,"tag":160,"props":1072,"children":1073},{"class":162,"line":337},[1074],{"type":21,"tag":160,"props":1075,"children":1076},{"emptyLinePlaceholder":628},[1077],{"type":27,"value":631},{"type":21,"tag":160,"props":1079,"children":1080},{"class":162,"line":493},[1081],{"type":21,"tag":160,"props":1082,"children":1083},{"style":551},[1084],{"type":27,"value":1085},"\u002F\u002F Continue statement\n",{"type":21,"tag":160,"props":1087,"children":1088},{"class":162,"line":16},[1089,1093,1097,1101,1105,1109,1113,1117,1121,1125],{"type":21,"tag":160,"props":1090,"children":1091},{"style":173},[1092],{"type":27,"value":84},{"type":21,"tag":160,"props":1094,"children":1095},{"style":167},[1096],{"type":27,"value":566},{"type":21,"tag":160,"props":1098,"children":1099},{"style":173},[1100],{"type":27,"value":176},{"type":21,"tag":160,"props":1102,"children":1103},{"style":179},[1104],{"type":27,"value":575},{"type":21,"tag":160,"props":1106,"children":1107},{"style":167},[1108],{"type":27,"value":580},{"type":21,"tag":160,"props":1110,"children":1111},{"style":173},[1112],{"type":27,"value":205},{"type":21,"tag":160,"props":1114,"children":1115},{"style":179},[1116],{"type":27,"value":990},{"type":21,"tag":160,"props":1118,"children":1119},{"style":167},[1120],{"type":27,"value":594},{"type":21,"tag":160,"props":1122,"children":1123},{"style":173},[1124],{"type":27,"value":599},{"type":21,"tag":160,"props":1126,"children":1127},{"style":167},[1128],{"type":27,"value":215},{"type":21,"tag":160,"props":1130,"children":1131},{"class":162,"line":522},[1132,1136,1140,1145,1150,1155,1159],{"type":21,"tag":160,"props":1133,"children":1134},{"style":173},[1135],{"type":27,"value":1010},{"type":21,"tag":160,"props":1137,"children":1138},{"style":167},[1139],{"type":27,"value":566},{"type":21,"tag":160,"props":1141,"children":1142},{"style":173},[1143],{"type":27,"value":1144},"%",{"type":21,"tag":160,"props":1146,"children":1147},{"style":179},[1148],{"type":27,"value":1149}," 2",{"type":21,"tag":160,"props":1151,"children":1152},{"style":173},[1153],{"type":27,"value":1154}," ==",{"type":21,"tag":160,"props":1156,"children":1157},{"style":179},[1158],{"type":27,"value":575},{"type":21,"tag":160,"props":1160,"children":1161},{"style":167},[1162],{"type":27,"value":215},{"type":21,"tag":160,"props":1164,"children":1165},{"class":162,"line":735},[1166,1171,1175],{"type":21,"tag":160,"props":1167,"children":1168},{"style":173},[1169],{"type":27,"value":1170},"        continue",{"type":21,"tag":160,"props":1172,"children":1173},{"style":167},[1174],{"type":27,"value":1039},{"type":21,"tag":160,"props":1176,"children":1177},{"style":551},[1178],{"type":27,"value":1179},"\u002F\u002F Skip even numbers\n",{"type":21,"tag":160,"props":1181,"children":1182},{"class":162,"line":744},[1183],{"type":21,"tag":160,"props":1184,"children":1185},{"style":167},[1186],{"type":27,"value":1052},{"type":21,"tag":160,"props":1188,"children":1189},{"class":162,"line":765},[1190,1194],{"type":21,"tag":160,"props":1191,"children":1192},{"style":179},[1193],{"type":27,"value":224},{"type":21,"tag":160,"props":1195,"children":1196},{"style":167},[1197],{"type":27,"value":615},{"type":21,"tag":160,"props":1199,"children":1200},{"class":162,"line":790},[1201],{"type":21,"tag":160,"props":1202,"children":1203},{"style":167},[1204],{"type":27,"value":343},{"type":21,"tag":160,"props":1206,"children":1207},{"class":162,"line":803},[1208],{"type":21,"tag":160,"props":1209,"children":1210},{"emptyLinePlaceholder":628},[1211],{"type":27,"value":631},{"type":21,"tag":160,"props":1213,"children":1214},{"class":162,"line":820},[1215],{"type":21,"tag":160,"props":1216,"children":1217},{"style":551},[1218],{"type":27,"value":1219},"\u002F\u002F Return statement\n",{"type":21,"tag":160,"props":1221,"children":1222},{"class":162,"line":828},[1223,1228,1234],{"type":21,"tag":160,"props":1224,"children":1225},{"style":173},[1226],{"type":27,"value":1227},"function",{"type":21,"tag":160,"props":1229,"children":1231},{"style":1230},"--shiki-default:#6F42C1;--shiki-dark:#B392F0",[1232],{"type":27,"value":1233}," add",{"type":21,"tag":160,"props":1235,"children":1236},{"style":167},[1237],{"type":27,"value":1238},"($a, $b) {\n",{"type":21,"tag":160,"props":1240,"children":1241},{"class":162,"line":836},[1242,1247,1252,1257,1262],{"type":21,"tag":160,"props":1243,"children":1244},{"style":173},[1245],{"type":27,"value":1246},"    return",{"type":21,"tag":160,"props":1248,"children":1249},{"style":167},[1250],{"type":27,"value":1251}," $a ",{"type":21,"tag":160,"props":1253,"children":1254},{"style":173},[1255],{"type":27,"value":1256},"+",{"type":21,"tag":160,"props":1258,"children":1259},{"style":167},[1260],{"type":27,"value":1261}," $b; ",{"type":21,"tag":160,"props":1263,"children":1264},{"style":551},[1265],{"type":27,"value":1266},"\u002F\u002F Return the sum of $a and $b\n",{"type":21,"tag":160,"props":1268,"children":1269},{"class":162,"line":845},[1270],{"type":21,"tag":160,"props":1271,"children":1272},{"style":167},[1273],{"type":27,"value":343},{"type":21,"tag":160,"props":1275,"children":1276},{"class":162,"line":865},[1277,1282,1286,1291,1296,1300,1305,1310],{"type":21,"tag":160,"props":1278,"children":1279},{"style":179},[1280],{"type":27,"value":1281},"echo",{"type":21,"tag":160,"props":1283,"children":1284},{"style":1230},[1285],{"type":27,"value":1233},{"type":21,"tag":160,"props":1287,"children":1288},{"style":167},[1289],{"type":27,"value":1290},"(",{"type":21,"tag":160,"props":1292,"children":1293},{"style":179},[1294],{"type":27,"value":1295},"5",{"type":21,"tag":160,"props":1297,"children":1298},{"style":167},[1299],{"type":27,"value":53},{"type":21,"tag":160,"props":1301,"children":1302},{"style":179},[1303],{"type":27,"value":1304},"3",{"type":21,"tag":160,"props":1306,"children":1307},{"style":167},[1308],{"type":27,"value":1309},"); ",{"type":21,"tag":160,"props":1311,"children":1312},{"style":551},[1313],{"type":27,"value":1314},"\u002F\u002F Outputs: 8\n",{"type":21,"tag":160,"props":1316,"children":1317},{"class":162,"line":878},[1318],{"type":21,"tag":160,"props":1319,"children":1320},{"emptyLinePlaceholder":628},[1321],{"type":27,"value":631},{"type":21,"tag":160,"props":1323,"children":1324},{"class":162,"line":890},[1325],{"type":21,"tag":160,"props":1326,"children":1327},{"style":551},[1328],{"type":27,"value":1329},"\u002F\u002F Goto statement\n",{"type":21,"tag":160,"props":1331,"children":1332},{"class":162,"line":906},[1333,1337,1342],{"type":21,"tag":160,"props":1334,"children":1335},{"style":173},[1336],{"type":27,"value":137},{"type":21,"tag":160,"props":1338,"children":1339},{"style":179},[1340],{"type":27,"value":1341}," label",{"type":21,"tag":160,"props":1343,"children":1344},{"style":167},[1345],{"type":27,"value":187},{"type":21,"tag":160,"props":1347,"children":1349},{"class":162,"line":1348},25,[1350,1354,1359],{"type":21,"tag":160,"props":1351,"children":1352},{"style":179},[1353],{"type":27,"value":1281},{"type":21,"tag":160,"props":1355,"children":1356},{"style":227},[1357],{"type":27,"value":1358}," \"This will be skipped.\"",{"type":21,"tag":160,"props":1360,"children":1361},{"style":167},[1362],{"type":27,"value":187},{"type":21,"tag":160,"props":1364,"children":1366},{"class":162,"line":1365},26,[1367,1372],{"type":21,"tag":160,"props":1368,"children":1369},{"style":1230},[1370],{"type":27,"value":1371},"label",{"type":21,"tag":160,"props":1373,"children":1374},{"style":167},[1375],{"type":27,"value":418},{"type":21,"tag":160,"props":1377,"children":1379},{"class":162,"line":1378},27,[1380,1384,1389],{"type":21,"tag":160,"props":1381,"children":1382},{"style":179},[1383],{"type":27,"value":1281},{"type":21,"tag":160,"props":1385,"children":1386},{"style":227},[1387],{"type":27,"value":1388}," \"This will be executed.\"",{"type":21,"tag":160,"props":1390,"children":1391},{"style":167},[1392],{"type":27,"value":187},{"type":21,"tag":160,"props":1394,"children":1396},{"class":162,"line":1395},28,[1397],{"type":21,"tag":160,"props":1398,"children":1399},{"style":551},[1400],{"type":27,"value":1401},"\u002F\u002F Outputs: \"This will be executed.\"\n",{"type":21,"tag":160,"props":1403,"children":1405},{"class":162,"line":1404},29,[1406],{"type":21,"tag":160,"props":1407,"children":1408},{"style":551},[1409],{"type":27,"value":1410},"\u002F\u002F Note: The use of `goto` is generally discouraged as it can make code harder to read and maintain.\n",{"type":21,"tag":1412,"props":1413,"children":1414},"style",{},[1415],{"type":27,"value":1416},"html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":8,"searchDepth":218,"depth":218,"links":1418},[1419],{"id":24,"depth":190,"text":28,"children":1420},[1421,1422,1423,1424],{"id":141,"depth":218,"text":144},{"id":346,"depth":218,"text":349},{"id":530,"depth":218,"text":533},{"id":935,"depth":218,"text":938},"markdown","content:php:php-fundamental:flow-control.md","content","php\u002Fphp-fundamental\u002Fflow-control.md","php\u002Fphp-fundamental\u002Fflow-control","md",[1432,1440,1448,1453,1459,1468,1473,1478,1483,1488,1493,1502,1508,1513,1518,1523,1528,1533,1539,1547,1555,1560,1567,1572,1579,1585,1591,1599,1605,1612,1618,1624,1631,1643,1649,1654],{"_path":1433,"title":1434,"description":1435,"tags":1436,"date":1439},"\u002Fcpp","C++ \u002F CPP","C++ notes, snippets, and references",[1437,1438],"cpp","c++","2026-05-05",{"_path":1441,"title":1442,"description":1443,"tags":1444,"date":1447},"\u002Fdata-structure-algorithm\u002Farray-manipulation\u002Ffor-looping","For Looping in Python","Using for loops to manipulate arrays in Python.",[1445,13,1446],"python","arrays","2026-03-18",{"_path":1449,"title":1450,"description":1451,"tags":1452,"date":1447},"\u002Fdata-structure-algorithm\u002Farray-manipulation\u002Fwhile-looping","While Looping in Python","Using while loops to manipulate arrays in Python.",[1445,13,1446],{"_path":1454,"title":1455,"description":1456,"tags":1457,"date":1458},"\u002Fdata-structure-algorithm\u002Fassignments","Assignments","Assignments in Python for competitive programming.",[1445,13],"2026-04-10",{"_path":1460,"title":1461,"description":1462,"tags":1463,"date":1467},"\u002Fdata-structure-algorithm\u002Fbuzzword","Buzzword List DSA","Common terms and concepts in data structures and algorithms.",[1464,1465,1466],"dsa","algorithms","data-structures","2026-04-03",{"_path":1469,"title":1470,"description":1471,"tags":1472,"date":1458},"\u002Fdata-structure-algorithm\u002Fdata-type","Data Types","Data types in Python for competitive programming.",[1445,13],{"_path":1474,"title":1475,"description":1476,"tags":1477,"date":1458},"\u002Fdata-structure-algorithm\u002Fhash-map","Hash Map","Hash map implementation in Python for competitive programming.",[1445,13],{"_path":1479,"title":1480,"description":1481,"tags":1482,"date":1458},"\u002Fdata-structure-algorithm\u002Finput-output","Input and Output","Handling input and output in Python for competitive programming.",[1445,13],{"_path":1484,"title":1485,"description":1486,"tags":1487,"date":1447},"\u002Fdata-structure-algorithm\u002Fmath-library\u002Fsum","Sum Elements","Using for loops to sum elements in Python.",[1445,13,1446],{"_path":1489,"title":1490,"description":1491,"tags":1492,"date":1447},"\u002Fdata-structure-algorithm\u002Fmath-library\u002Fsummary","Summary","Summary of the math library in Python.",[1445,13,1446],{"_path":1494,"title":1495,"description":1496,"tags":1497,"date":1501},"\u002Fdocker\u002Fcheat-sheets","Docker Cheat Sheets","Cheat sheets for frequently used Docker commands and concepts",[1498,1499,1500],"docker","devops","infrastructure","2026-05-01",{"_path":1503,"title":1504,"description":1505,"tags":1506,"date":1507},"\u002Fdocker\u002Fdocker-dasar\u002Fdocker-container","Docker Container","Introduction to Docker containers and their usage",[1498,1499,1500],"2026-03-12",{"_path":1509,"title":1510,"description":1511,"tags":1512,"date":1507},"\u002Fdocker\u002Fdocker-dasar\u002Fdocker-execution","Docker Execution","Introduction to Docker execution and their usage",[1498,1499,1500],{"_path":1514,"title":1515,"description":1516,"tags":1517,"date":1507},"\u002Fdocker\u002Fdocker-dasar\u002Fdocker-image","Docker Image","Introduction to Docker images and their usage",[1498,1499,1500],{"_path":1519,"title":1520,"description":1521,"tags":1522,"date":1507},"\u002Fdocker\u002Fdocker-dasar\u002Fdocker-logging","Docker Logging","Introduction to Docker logging and their usage",[1498,1499,1500],{"_path":1524,"title":1525,"description":1526,"tags":1527,"date":1507},"\u002Fdocker\u002Fdocker-prerequisites\u002Fdocker-installation","Docker Installation","Introduction to Docker installation and their usage",[1498,1499,1500],{"_path":1529,"title":1530,"description":1531,"tags":1532,"date":1507},"\u002Fdocker\u002Fresources","Docker Resources","Collection of Docker resources for learning and reference",[1498,1499,1500],{"_path":1534,"title":1535,"description":1536,"tags":1537,"date":1439},"\u002Fjava","Java","Java notes, snippets, and references",[1538],"java",{"_path":1540,"title":1541,"description":1542,"tags":1543,"date":1507},"\u002Fjavascript\u002Fpromises","Promise Patterns","Common JavaScript promise patterns and async\u002Fawait usage",[1544,1545,1546],"javascript","frontend","async",{"_path":1548,"title":1549,"description":1550,"tags":1551,"date":1439},"\u002Fjenkins","Jenkins","Jenkins notes, snippets, and references",[1552,1553,1554],"jenkins","ci","cd",{"_path":1556,"title":1557,"description":1558,"tags":1559,"date":1447},"\u002Fphp\u002Farrays","PHP Array Functions","Essential PHP array functions and patterns",[12,13,1446],{"_path":1561,"title":1562,"description":1563,"tags":1564,"date":1566},"\u002Fphp\u002Fpatterns\u002Fsingleton","Singleton Pattern","Implementing the singleton pattern in PHP",[12,1565,13],"patterns","2026-03-13",{"_path":1568,"title":1569,"description":1570,"tags":1571,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Farray-map","PHP Array and Map","Essential PHP array and map functions and their usage",[12,13,1446],{"_path":1573,"title":1574,"description":1575,"tags":1576,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Fcasting-convertions","PHP Casting and Conversions","Learning about PHP casting and conversions",[12,13,1577,1578],"casting","conversions",{"_path":1580,"title":1581,"description":1582,"tags":1583,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Fcomments","PHP Comments","Essential PHP comment operations",[12,13,1584],"comments",{"_path":1586,"title":1587,"description":1588,"tags":1589,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Fdatatypes","PHP Data Types","Essential PHP data types and their usage",[12,13,1590],"data types",{"_path":1592,"title":1593,"description":1594,"tags":1595,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Fexpression-statement-block","PHP Expressions, Statements, and Blocks","Essential PHP expressions, statements, and blocks",[12,13,1596,1597,1598],"expressions","statements","blocks",{"_path":1600,"title":1601,"description":1602,"tags":1603,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Ffunctions","PHP Functions","Essential PHP functions and their usage",[12,13,1604],"functions",{"_path":1606,"title":1607,"description":1608,"tags":1609,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Finclude-require","PHP Include and Require","Understanding PHP include and require statements",[12,13,1610,1611],"include","require",{"_path":1613,"title":1614,"description":1615,"tags":1616,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Fintroduction","PHP Introduction","An introduction to PHP programming language and its fundamentals",[12,13,1617],"introduction",{"_path":1619,"title":1620,"description":1621,"tags":1622,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Foperator","PHP Operators","Essential PHP operators and their usage",[12,13,1623],"operators",{"_path":1625,"title":1626,"description":1627,"tags":1628,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Foutput-input","PHP Output & Input","Learning about PHP output and input methods",[12,13,1629,1630],"output","input",{"_path":1632,"title":1633,"description":1634,"tags":1635,"date":15},"\u002Fphp\u002Fphp-fundamental\u002Fvariables","PHP Variables","Essential PHP variables, constants, magic constants, and variable scope",[12,13,1636,1637,1638,1639,1640,1641,1642],"variables","constants","magic constants","scope","global","local","static",{"_path":1644,"title":1645,"description":1646,"tags":1647,"date":1648},"\u002Fphp\u002Freferences","PHP References (&)","Useful PHP reference snippets and patterns",[12,13],"2026-03-19",{"_path":1650,"title":1651,"description":1652,"tags":1653,"date":1439},"\u002Fpython","Python","Python notes, snippets, and references",[1445],{"_path":1655,"title":1656,"description":1657,"tags":1658,"date":1439},"\u002Frust","Rust","Rust notes, snippets, and references",[1659],"rust",[1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698],{"_path":1433,"title":1434,"weight":163},{"_path":1441,"title":1442,"weight":16},{"_path":1449,"title":1450,"weight":16},{"_path":1454,"title":1455,"weight":218},{"_path":1460,"title":1461,"weight":163},{"_path":1469,"title":1470,"weight":190},{"_path":1474,"title":1475,"weight":16},{"_path":1479,"title":1480,"weight":163},{"_path":1484,"title":1485,"weight":845},{"_path":1489,"title":1490,"weight":16},{"_path":1494,"title":1495,"weight":1672},100,{"_path":1503,"title":1504,"weight":845},{"_path":1509,"title":1510,"weight":878},{"_path":1514,"title":1515,"weight":865},{"_path":1519,"title":1520,"weight":890},{"_path":1524,"title":1525,"weight":16},{"_path":1529,"title":1530,"weight":163},{"_path":1534,"title":1535,"weight":163},{"_path":1540,"title":1541},{"_path":1548,"title":1549,"weight":163},{"_path":1556,"title":1557,"weight":163},{"_path":1561,"title":1562},{"_path":1568,"title":1569,"weight":493},{"_path":1573,"title":1574,"weight":303},{"_path":1580,"title":1581,"weight":218},{"_path":1586,"title":1587,"weight":286},{"_path":1592,"title":1593,"weight":337},{"_path":5,"title":9,"weight":16},{"_path":1600,"title":1601,"weight":522},{"_path":1606,"title":1607,"weight":735},{"_path":1613,"title":1614,"weight":163},{"_path":1619,"title":1620,"weight":320},{"_path":1625,"title":1626,"weight":190},{"_path":1632,"title":1633,"weight":237},{"_path":1644,"title":1645,"weight":190},{"_path":1650,"title":1651,"weight":163},{"_path":1655,"title":1656,"weight":163},1780160028588]