Explore tweets tagged as #PHPQuiz
@VotrubaT
Tomas Votruba
2 years
#phpquiz. What is the value of $items property? :)
Tweet media one
12
3
35
@channelsoftech
Channel Softech
1 year
Drop your answer in the comments and let's see who gets it right! 💡. #PHPQuiz #QuizTime #digitalmarketing #testyourknowledge #channelsoftech #channelsoftechpvtltd #hypertext #fullformof
Tweet media one
0
0
0
@edubrotech
Edubrotech
3 months
0
0
0
@codemilitant
CodeMilitant
1 year
Can you solve this PHP code snippet quiz! Retweet to your friends 🤔. #CodeMilitantQuiz #PHPQuiz
Tweet media one
2
0
0
@DakshyLearning
Dakshy Learning
2 years
Tweet media one
1
0
1
@DakshyLearning
Dakshy Learning
2 years
In PHP, which of these functions is used to find various files?. #industrialtraining #php #phptraining #phpcourse #phpdevelopment #phpquiz #quiz #webdevelopment #dakshylearning
Tweet media one
0
0
0
@DakshyLearning
Dakshy Learning
2 years
🚀 Test your PHP knowledge and sharpen your coding skills with our PHP quiz! Are you up for the challenge? 💡👨‍💻 . #PHPquiz #phpdeveloper #phpdevelopment #phpskills #developer #coding #codechallenge #PHPmastery #quiz #skillstest #dakshylearning
Tweet media one
0
0
0
@FredBouchery
Frédéric Bouchery 🌟
11 months
What will #PHP display? #phpquiz.<?php.$a = [1 => 1, 3 => 2];.array_shift($a);.echo array_key_first($a);.
2
1
4
@FredBouchery
Frédéric Bouchery 🌟
11 months
What #PHP display? #phpquiz.<?php.function foo(?array &$array) {. $array = 42;.}. $array = [];.foo($array['x']);.echo $array['x'];.
2
4
4
@FredBouchery
Frédéric Bouchery 🌟
11 months
What #PHP display? #phpquiz.<?php.$a = [1];.foreach ($a as $value) {. if ($value < 3) $a[] = $value + 1;. echo $value;.}.
2
0
2
@FredBouchery
Frédéric Bouchery 🌟
8 months
What #PHP 8.3 display? #phpquiz.<?php.declare(strict_types=1);.$a = ['1' => '42', '1e0' => '17'];.array_walk($a, function (int $i) {. echo $i;.});.
4
3
4
@FredBouchery
Frédéric Bouchery 🌟
1 year
What will #PHP display? #phpquiz (from @gplanchat).<?php.enum Options: string {. const Foo = 'foo';. const Bar = 'bar';. const Baz = 'baz';.}. function test(Options $option): void {. echo $topion->value;.}. test(Options::Foo);.
6
3
4
@FredBouchery
Frédéric Bouchery 🌟
1 year
What will #PHP displays? #phpquiz.<?php. $codes = ['08000' => 'Charleville-Mézières'];.echo isset($codes[8000]) ? 'exists' : 'not exists';.
0
1
4
@FredBouchery
Frédéric Bouchery 🌟
10 months
What #PHP display? #phpquiz.<?php.interface I {. public function x(string $s = null);.}. class A implements I {. public function x(?string $s = 'foo'): void {. }.}.(new A)->x();.
1
1
3
@_ricardoboss
2 years
RT @vohanj@phpc.social.#phpquiz #php . ```php.$a = ctype_alnum('');.var_dump($a);.```.
0
0
0
@EXTENTIA
Extentia, a Merkle Company
2 years
#TuesdayTechTrivia – Get your weekly dose of tech here!. Which of the following is not a variable scope in PHP? . #PHP #PHPQuiz #TuesdayTechTrivia #Extentia #DoMoreBeMore.
0
0
0
@amigoways
Amigoways Technologies
2 years
Who is known as the father of PHP?. A. Drek Kolkevi.B. List Barely.C. Rasmus Lerdrof.D. None of the above. #quiz #poll #phpquiz #phppoll #softwarequiz #frameworkquiz #programmingquiz #devquiz #amigowaysquiz #amigowaypoll #amigowaysteam #amigoways.
0
0
7
@FredBouchery
Frédéric Bouchery 🌟
1 year
What will #PHP display? #phpquiz (Thanks @adrienRoches). <?php. class Foo {. public function show(): void {. echo static::class;. }.}. class Bar extends Foo {}. (new Foo)->show(. )->call(new Foo);.(new Foo)->show(. )->call(new Bar);.
1
1
2
@FredBouchery
Frédéric Bouchery 🌟
1 year
Will #PHP raise an error? #phpquiz.<?php.class Foo {}.function Foo() {}.new Foo();.
1
1
3