php

Back Open Paginator
11.12.2025 15:37
wordmark (@wordmark@mas.to)

@oldperl hab schon wer macht mit? Es gäbe schweissarbeiten #heavymetal natürlich auch #holz und #solar #batterie #elektrik

Auch auch #php arbeiten




Show Original Post


11.12.2025 15:23
zend (@zend@phpc.social)

Choosing the right PHP stack is a critical decision for any team looking to maintain a competitive edge. After all, it’s not just about what works today, but what will scale for the future.

In our latest blog, Zend Principal Product Manager Matthew Weier O’Phinney ( @mwop ) shares essential insights for building the best PHP stack for your application.

Read the full guide here >> ter.li/apn2i0

#Zend #PHP





Show Original Post


11.12.2025 14:30
symfony (@symfony@mastodon.social)

🎟️ Tarif normal dispo !

Le SymfonyLive Paris 2026 approche — profitez du prix actuel avant qu’il ne bouge 👀🔥

📅 26–27 mars 2026
👉 Billets : live.symfony.com/2026-paris/re





Show Original Post


11.12.2025 14:21
k47 (@k47@margaras.k47.cz)

claims in this article about php pipe operator https://phpfashion.com/en/pipe-operator-lipstick-on-a-pig are somewhat contradicted by reality.

this statement for example is just not true:

"Every single step really creates a new instance of a Closure object. For every operation. For every line."

i looked into php sources long enough to know that right here https://github.com/php/php-src/blob/master/Zend/zend_compile.c#L6611 obvious cases of pipe operators are rewritten into function calls.

if i dump the opcodes for ord($x) and $x |> ord(...), function call look like this

INIT_FCALL 1 96 string("ord")
SEND_VAR CV0($x) 1
V3 = DO_ICALL

and pipe looks like this

T3 = QM_ASSIGN CV0($x)
INIT_FCALL 1 96 string("ord")
SEND_VAL T3 1
V3 = DO_ICALL

only difference is the QM_ASSIGN and SEND_VAL instead of SEND_VAR. no closure allocation in sight.

QM_ASSIGN give you (on my ancient i5-4570) about 2 ns hit per pipe invocation under interpreter and 0.7 ns under JIT. given general php slowness, barely noticeable.

#PHP




Show Original Post


11.12.2025 13:30
backpackforlaravel (@backpackforlaravel@mstdn.social)

#Laravel #PHP

Do you use compact() when passing data to views....?

Is it an elegant shorthand or readability killer? Drop your thoughts in the comments!👇





Show Original Post


11.12.2025 13:23
selectallfromdual (@selectallfromdual@mastodon.uno)

👾 Nascondere i parametri con SensitiveParameter in PHP 8.2
Un nuovo attributo disponibile in PHP per nascondere i parametri riservati senza dover riscrivere il sistema di logging...

👉 selectallfromdual.com/blog/1711

#guidaphp #php




Show Original Post


11.12.2025 12:01
dpc_ibuildings (@dpc_ibuildings@mastodon.social)

🎤 8 days left to submit your talk!

If you build with PHP, anything PHP, we want to hear your story.
Topics we love:
💡 original ideas
🔥 modern PHP
🧠 architecture & performance
🪄 framework magic (Laravel, Symfony, etc.)
🔐 security insights
🛠 debugging war stories
🔌 APIs & integrations
💬 team culture & dev life

Submit before 19 December!
👉 sessionize.com/adc-dpc-wdc-202





Show Original Post


11.12.2025 11:25
michabbb (@michabbb@social.vivaldi.net)

#PHPUnit 12.5 released - key features:

🧪 Enhanced parallel testing: Improved worker coordination and resource management for faster test suites

#PHP #Testing #PHPDeveloper #TDD

📊 Better failure output: Inline diffs for arrays/objects, clearer stack traces with context
📈 Code coverage: New metrics for line/branch execution, HTML reports with filters
🔍 Mock assertions: `assertMockObjectCreated()` and `assertMockObjectNeverCreated()`

🧵 👇





Show Original Post


11.12.2025 11:12
TurboLearnPHP (@TurboLearnPHP@mastodon.social)

PHP Array Identity Comparison String vs Integer Keys

Are string keys and integer keys the same in PHP arrays? This mind-blowing tutorial reveals the truth!

Watch the comparison between array with string key "1" versus array with integer key 1. The result will change how you think about PHP arrays!

Perfect for PHP developers who want to avoid subtle bugs in their code.

...

youtube.com/watch?v=Zi1qnsaKY2E




Show Original Post


11.12.2025 10:30
symfony (@symfony@mastodon.social)

🚀 Meet one of your January 2026 !
Dave Liddament will lead “Creating Custom PHPStan & Rector Rules” 🛠️

Take your PHP skills to the next level — enforce coding standards, catch bugs, automate refactoring 💻✨

📅 Workshop: Jan 20, 2026 | 9:30 AM CET

🎟️ Register: live.symfony.com/2026-online-j





Show Original Post


11.12.2025 10:24
decompwlj (@decompwlj@mathstodon.xyz)

A056020: Numbers that are congruent to +-1 mod 9

3D graph, threejs - webGL ➡️ decompwlj.com/3Dgraph/A056020.
3D graph Gen, threejs animation ➡️ decompwlj.com/3DgraphGen/A0560
2D graph, first 500 terms ➡️ decompwlj.com/2Dgraph500terms/

#decompwlj #math #mathematics #maths #sequence #OEIS #JavaScript #php #graph #3D #threejs #webGL #triangular #numbers #primes #PrimeNumbers #palindromes #animation #FundamentalTheoremOfArithmetic #sequences #NumberTheory #classification #integer #decomposition #number #theory #equation #graphs #sieve #fundamental #theorem #arithmetic #research





Show Original Post


11.12.2025 10:19
decompwlj (@decompwlj@mathstodon.xyz)

A055638: Numbers k for which sigma(k^2) is prime

3D graph, threejs - webGL ➡️ decompwlj.com/3Dgraph/A055638.
3D graph Gen, threejs animation ➡️ decompwlj.com/3DgraphGen/A0556
2D graph, first 500 terms ➡️ decompwlj.com/2Dgraph500terms/

#decompwlj #math #mathematics #maths #sequence #OEIS #JavaScript #php #graph #3D #threejs #webGL #triangular #numbers #primes #PrimeNumbers #palindromes #animation #FundamentalTheoremOfArithmetic #sequences #NumberTheory #classification #integer #decomposition #number #theory #equation #graphs #sieve #fundamental #theorem #arithmetic #research





Show Original Post


1 ...263 264 265 266 267 268 269 270 271 272 273 ...527
UP