Seenthis
•
 
Identifiants personnels
  • [mot de passe oublié ?]

 
  • #p
  • #ph
RSS: #php

#php

  • #php5.3
  • #php5.6-rc1
  • #php7
  • #php8
  • #phptemplate
  • #phpz
  • #phpbb
  • #phpcr
  • #phpcs
  • #phpcbf
  • #phpng
  • #php_
  • #phpdocumentor
  • #phploc
  • #php-
  • #php.ini
  • #phpstan
  • #phpstorm
  • #phpseclib
  • #phpunit
  • #phpquery
  • #phpmailer
  • #phpmychat
  • #phpmyadmin
  • #phpmetrics
  • #phpgivesback2016
0 | 25 | 50 | 75 | 100 | 125 | 150 | 175 | 200 | ... | 550
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 16/06/2025
    1
    @spip
    1

    PHP : Constantes pré-définies - Manual
    ▻https://www.php.net/manual/fr/json.constants.php#115783

    Valeurs numériques des constantes utilisées comme flags en 2ème paramètre de la fonction json_encode()
    en SPIP il ne semble pas possible d’utiliser la forme chaîne de caractères de la constante (JSON_NUMERIC_CHECK par ex) lorsqu’on passe json_encode en filtre d’une #BALISE. En revanche la forme numérique de cette constante est OK

    Exemple : pour forcer le retour d’une valeur numérique (int) à la place de :

    [(#PATATE|json_encode{JSON_NUMERIC_CHECK})]

    on utilisera :

    [(#PATATE|json_encode{32})]

    #json_encode #SPIP #PHP #JSON #FLAGS #valeur_numérique

    cy_altern @cy_altern CC BY-SA
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 16/06/2025

      Ce n’est pas une bonne idée, car l’implémentation derrière peut changer, ce pourquoi justement il y a des noms de variables humains, sémantiques. Il faut utiliser #CONST{JSON_NUMERIC_CHECK}

      RastaPopoulos @rastapopoulos CC BY-NC
    • @cy_altern
      cy_altern @cy_altern CC BY-SA 18/06/2025

      ah oui, effectivement...
      ...mais ça ne simplifie pas l’écriture :-(

      cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 19/11/2024
    1
    @marcimat
    1

    Announcing the Pre-Release of the #PHP Installer for #Extensions (PIE) — The PHP Foundation — Supporting, Advancing, and Developing the PHP Language
    ▻https://thephp.foundation/blog/2024/11/19/pie-pre-release

    https://thephp.foundation/assets/share/2024-11-19-pie-pre-release.png

    With PIE, the process of managing PHP extensions becomes more streamlined. Extensions are distributed via #Packagist just like regular PHP packages! It makes the installation and update process quite familiar if you already use #Composer.

    wow...

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 11/09/2024

    Hi.Events - Sell #Tickets Online for Concerts, #Conferences, and more
    ▻https://hi.events

    https://hi.events/open-graph-cover.jpg

    Open-source #event management and ticketing platform.

    The frontend is Node React application, while the backend is a Laravel application.

    Il ne sembla pas y avoir de possibilité d’installation manuelle (sans docker) pour l’instant.

    ▻https://github.com/HiEventsDev/hi.events

    #PHP

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 4/07/2024

    #PHP 8 : #match or #switch ? - stitcher.io
    ▻https://stitcher.io/blog/php-8-match-or-switch

    Let’s start by comparing the two. Here’s a classic switch example:

    switch ($statusCode) {
       case 200:
       case 300:
           $message = null;
           break;
       case 400:
           $message = 'not found';
           break;
       case 500:
           $message = 'server error';
           break;
       default:
           $message = 'unknown status code';
           break;
    }

    Here’s its match equivalent:

    $message = match ($statusCode) {
       200, 300 => null,
       400 => 'not found',
       500 => 'server error',
       default => 'unknown status code',
    };

    First of all, the match expression is significantly shorter:
    – it doesn’t require a break statement
    – it can combine different arms into one using a comma
    – it returns a value, so you only have to assign value once

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 21/06/2024
    1
    @monolecte
    1

    Home - Easy !Appointments
    ▻https://easyappointments.org

    https://easyappointments.org/wp-content/uploads/2023/12/booking-page-screenshot-square-2.png

    Easy!Appointments is a highly customizable web application that allows customers to book #appointments with you via a sophisticated web interface.
    Potential alternative to Doctolib

    ▻https://github.com/alextselegidis/easyappointments

    #php #rendezvous

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 7/06/2024

    azjezz/assess : Unix filesystem notifications library for PHP.
    ▻https://github.com/azjezz/assess

    Un « watcher » de système de fichiers en PHP (à priori « Linux only »)
    (principe : une fonction PHP qui s’auto-appelle)

    #watcher #PHP #filesystem #cron #automatisation

    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 6/06/2024
    2
    @monolecte
    @cy_altern
    2

    buggregator/server: Buggregator is a lightweight, standalone server that offers a range of debugging features for PHP applications.
    ▻https://buggregator.dev
    ▻https://github.com/buggregator/server

    Buggregator is a lightweight, standalone server that offers a range of #debugging features for #PHP applications. Think of it as a Swiss Army knife for developers. What makes it special is that it offers a range of features that you would usually find in various paid tools, but it’s available for free.

    Buggregator is not just a debugging server; it’s a comprehensive suite of tools that cater to various aspects of application development and maintenance, all available at no cost. Here’s what you can expect: Xhprof Profiler​, Symfony VarDumper Server​, Spatie Ray Debug Tool​, Fake SMTP Server​, Sentry Compatibility​, Monolog Server​, Inspector Compatibility​, HTTP Requests Dump Server​ & Dumps sharing.

    via ►https://blog.jetbrains.com/phpstorm/2024/06/php-annotated-may-2024

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 6/06/2024

    NoiseByNorthwest/php-spx: A simple & straight-to-the-point #PHP #profiling extension with its built-in web UI
    ▻https://github.com/NoiseByNorthwest/php-spx
    ▻https://repository-images.githubusercontent.com/94931170/08974600-7e4b-11ea-9d67-8dd9fff30ba7

    via ►https://blog.jetbrains.com/phpstorm/2024/06/php-annotated-may-2024

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 6/06/2024
    2
    @rastapopoulos
    @cy_altern
    2

    tomloprod/colority: Colority is a lightweight PHP library designed to handle color transformations, validations and manipulations with ease.
    ▻https://github.com/tomloprod/colority

    Colority is a lightweight #PHP #library designed to handle #color transformations, validations and manipulations with ease.

    It allows you to instantiate concrete objects according to the color format (RGB, HSL, Hexadecimal) and convert from one format to another.

    Additionally, it lets you check if a background color meets the WCAG 2.0 #accessibility standard regarding the color contrast ratio in text and UI.

    Furthermore, it includes multiple functions such as the following:

    – Generate the best foreground color (white, black, or from a user-provided list) for a background color, ensuring the best possible contrast ratio. (important for improving text visibility on, for example, colored badges).
    – Generate a fixed color based on a string. Useful for generating a color associated with, for example, a username.
    – Allows you to obtain a random color similar to a given color.

    via ►https://blog.jetbrains.com/phpstorm/2024/06/php-annotated-may-2024

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 24/05/2024

    Switch Between PHP Versions on Linux CLI | Baeldung on Linux
    ▻https://www.baeldung.com/linux/switch-php-versions

    Howto pour switcher entre les versions de PHP en cli sous Linux/Debian
    La méthode interactive :

    update-alternatives --config php

    et pour vérification que le lien symbolique de php est OK :
    ls -aul /etc/alternatives

    #PHP #debian #alternatives #version

    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 14/05/2024
    4
    @spip
    @arno
    @monolecte
    @7h36
    4

    Intervention Image | Intervention Image v3 | intervention.io
    ▻https://image.intervention.io/v3

    Une lib PHP de manipulation d’images qui offre une API unifiée pour GD2 et Imagick. L’installation peut être gérée via Composer
    Le repo Git : ▻https://github.com/Intervention/image

    Une lib candidate pour les manipulations d’image dans SPIP 5 ?

    #intervention #imagick #GD2 #SPIP #PHP

    cy_altern @cy_altern CC BY-SA
    • @arno
      ARNO* @arno ART LIBRE 14/05/2024

      Intéressant :

      Support for colorspaces and profiles

      Parce qu’à ma connaissance, c’est toujours pas possible de gérer les profils de couleur avec GD. Ce qui fait que si tu installes une photo en AdobeRGB dans SPIP, la version redimensionnées se retrouve toute terne (passage en sRGB sans conversion).

      ARNO* @arno ART LIBRE
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 11/03/2024
    1
    @spip
    1

    SRWieZ/thumbhash : Thumbhash implementation in #PHP
    ▻https://github.com/SRWieZ/thumbhash
    ▻https://evanw.github.io/thumbhash

    Thumbhash PHP is a PHP library for generating unique, human-readable identifiers from #image files. It is inspired by Evan Wallace’s Thumbhash algorithm and provides a PHP implementation of the algorithm.

    Thumbhash is a very compact representation of a #placeholder for an image. Store it inline with your data and show it while the real image is loading for a smoother #loading experience. It’s similar to #BlurHash but with some advantages

    b_b @b_b PUBLIC DOMAIN
    • @klaus
      klaus++ @klaus 11/03/2024

      Merci ! C’est cool pour protéger ses images qu’on ne veut partager qu’avec les visiteurs connectés et pour plein d’autres utilisations.
      Est-ce qu’on aura un filtre (facile) ou plugin #SPIP ?!?

      klaus++ @klaus
    • @b_b
      b_b @b_b PUBLIC DOMAIN 11/03/2024

      Est-ce qu’on aura un filtre (facile) ou plugin #SPIP ?!?

      huhu, ça se pourrait si quelqu’un le faisait, perso c’est pas dans ma todo :)

      b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @klaus
    klaus++ @klaus 28/01/2024
    2
    @simplicissimus
    @cy_altern
    2
    @simplicissimus

    Je découvre #duckdb
    ▻https://duckdb.org/docs/archive/0.9.2

    Quel merveilleux outil pour travailler avec open data.

    Merci @simplicissimus pour ce lien vers la présentation à Toulouse.
    ▻https://seenthis.net/messages/1038730

    Côté pratique c’est mpressionnant

    Data Import & Export

    CSV Import
    CSV Export
    Parquet Import
    Parquet Export
    Query Parquet
    HTTP Parquet Import
    S3 Parquet Import
    S3 Parquet Export
    JSON Import
    JSON Export
    Excel Import
    Excel Export
    SQLite Import
    PostgreSQL Import

    Tout sauf du #PHP

    There are various client APIs for DuckDB:

    C
    C++
    Java
    Julia
    Node.js
    Python
    R
    Rust
    WebAssembly/Wasm
    ADBC API
    ODBC API

    Additionally, there is a standalone Command Line Interface (CLI) client.

    There are also contributed third-party DuckDB wrappers for:

    C# by Giorgi
    Common Lisp by ak-coram
    Crystal by amauryt
    Go by marcboeker
    Ruby by suketa
    Zig by karlseguin

    Les arguments pour
    ▻https://duckdb.org/why_duckdb

    ... what goals DuckDB has and why and how we try to achieve those goals through technical means. To start with, DuckDB is a relational (table-oriented) DBMS that supports the Structured Query Language (SQL)
    ...
    no external dependencies ...
    no DBMS server software to install ...
    support for complex queries in SQL with a large function library ...

    DuckDB is deeply integrated into Python and R for efficient interactive data analysis. DuckDB provides APIs for Java, C, C++, Julia, Swift, and others.
    ...
    DuckDB is released under the very permissive MIT License
    etc.

    don’t

    High-volume transactional use cases (e.g., tracking orders in a webshop)
    Large client/server installations for centralized enterprise data warehousing
    Writing to a single database from multiple concurrent processes
    Multiple concurrent processes reading from a single writable database

    mais

    PHP example to integrate DuckDB using PHP-FFI
    ▻https://github.com/thbley/php-duckdb-integration

    Currently there is no PHP extension available for using DuckDB, so I created a small library using PHP-FFI.

    DuckDB is an embeddable SQL OLAP database management system. It does not require external servers. Databases are stored in single files (similar to SQLite). Compared to SQLite, DuckDB is much faster. E.g. I imported 16M rows from a CSV file in 5s on my notebook (i5-8250U).

    DuckDB can import CSV files with automatic format detection and automatic table creation using:

    CREATE TABLE test1 AS SELECT FROM read_csv_auto(’test1.csv’);
    CREATE TABLE test2 AS SELECT
    FROM read_csv_auto(’test2.csv.gz’);

    Usage:

    php -dffi.enable=1 test.php

    or:

    docker build -t php-ffi .
    docker run -it —rm -v $(pwd):/code php-ffi php /code/test.php

    Requirements:

    PHP 7.4+ with FFI extension enabled

    Question / défi

    Directly running DuckDB queries on data stored in SQLite files | Hacker News
    ▻https://news.ycombinator.com/item?id=30801575

    #SQL #open_data

    klaus++ @klaus
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 2/01/2024
    1
    @cy_altern
    1

    samdark/php-fpm_tuner: A script to tune #PHP-FPM
    ▻https://github.com/samdark/php-fpm_tuner

    Simple script that helps tuning PHP-FPM.

    php php-fpm-tuner.php

    pm.max_children = 11
    start_servers = 3
    min_spare_servers = 3
    max_spare_servers = 8

    The script calculates pm #max_children based on available free memory and memory used for each worker (it is either determined from currently running workers or php.ini memory limit).#start_servers #min_spare_servers, and #max_spare_servers are taking both memory limits and CPU cores available into account.

    En lien avec ►https://seenthis.net/messages/955121

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 8/11/2023

    kd2org/karadav: Lightweight NextCloud compatible WebDAV server
    ▻https://github.com/kd2org/karadav
    https://github.com/kd2org/karadav/blob/main/doc/scr_index.jpg?raw=true

    This is a simple and lightweight #WebDAV server, allowing to easily set up a #file_sharing server compatible with WebDAV and #NextCloud clients. It has no dependencies and good performance.

    It is written in #PHP (8+). The only dependency is #SQLite3 for the database.

    Its original purpose was to serve as a demo and test for the KD2 WebDAV library, which we developed for Paheko, our non-profit management solution, but it can also be used as a simple but powerful file sharing server.

    If you are looking for an even lighter WebDAV server, try also our other server, PicoDAV ▻https://github.com/kd2org/picodav. It isn’t compatible with NextCloud/ownCloud clients, but it is a single file that you can drop anywhere in your document root, nothing to install!

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 7/11/2023

    seanmorris/php-wasm: #PHP in #Browser, powered by #WebAssembly. Original Project by Oraoto, ES6 & Clang Upgrades by Sean Morris.
    ▻https://github.com/seanmorris/php-wasm

    PHP in Browser, powered by WebAssembly. Original Project by Oraoto, ES6 & Clang Upgrades by Sean Morris.

    Exemple : ▻https://codepen.io/SeanMorris227/pen/WNLmWdR?editors=1100

    En lien avec ▻https://seenthis.net/messages/1000510

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 13/10/2023
    1
    @rastapopoulos
    1

    xrDebug
    ▻https://docs.xrdebug.com

    https://rodolfoberrios.com/photos/2023/xrdebug/1.0.0/xrdebug-social.png

    xrDebug, a lightweight portable web-based debug utility. TL;DR xrDebug is an Open Source alternative to #Ray, with support for multiple peers.

    Billet de blog de présentation ▻https://rodolfoberrios.com/2023/10/10/xrdebug-1-0

    ▻https://docs.xrdebug.com/assets/media/cremino.47fdbb08.mp4

    #php #xdebug

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 27/09/2023
    8
    @arno
    @rastapopoulos
    @spip
    @monolecte
    @7h36
    @biggrizzly
    @jluc1
    @ze_dach
    8

    loupe-php/loupe: A #fulltext #search engine with #tokenization, #stemming, #typo_tolerance, #filters and #geo support based on only #PHP and #SQLite.
    ▻https://github.com/loupe-php/loupe

    An SQLite based, PHP-only fulltext search engine.

    Loupe…
    –…only requires PHP and SQLite, you don’t need anything else - no containers, no nothing
    –…is typo-tolerant (based on the State Set Index Algorithm and Levenshtein)
    –…supports phrase search using " quotation marks
    –…supports filtering (and ordering) on any attribute with any SQL-inspired filter statement
    –…supports filtering (and ordering) on Geo distance
    –…orders relevance based on a typical TF-IDF Cosine similarity algorithm
    …auto-detects languages
    –…supports stemming
    –…is very easy to use
    –…is all-in-all just the easiest way to replace your good old SQL LIKE %...% queries with a way better search experience but without all the hassle of an additional service to manage. SQLite is everywhere and all it needs is your filesystem.

    b_b @b_b PUBLIC DOMAIN
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 27/09/2023

      Si le plugin Indexer de SPIP pouvait vraiment être agnostiquement multi-services d’indexation (à continuer d’améliorer, peut-être on peut vraiment)… ça serait un très bon candidat à l’ajout (avec le méga connu elastic search).

      Attention que pour celui là faut pas avoir trop de docs non plus, mais pour petits et moyens sites (ils disent vers 50000 max) c’est un super truc facile à mettre en place.

      RastaPopoulos @rastapopoulos CC BY-NC
    • @b_b
      b_b @b_b PUBLIC DOMAIN 28/09/2023
      @rastapopoulos

      @rastapopoulos gogogo !

      b_b @b_b PUBLIC DOMAIN
    • @b_b
      b_b @b_b PUBLIC DOMAIN 2/10/2023

      Ha ben tiens !

      SEAL stands for: S earch E ngine A bstraction L ayer

      The SEAL project is a PHP library designed to simplify the process of interacting with different search engines. It provides a straightforward interface that enables users to communicate with various search engines, including: Meilisearch, Opensearch, Elasticsearch, Algolia, Loupe, Redisearch, Solr, Typesense

      ▻https://schranz-search.github.io/schranz-search

      b_b @b_b PUBLIC DOMAIN
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 2/10/2023
      @b_b

      Haha @b_b ▻https://git.spip.net/spip-contrib-extensions/indexer/issues/9

      RastaPopoulos @rastapopoulos CC BY-NC
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 27/09/2023

    PHP #upgrades
    ▻https://gist.github.com/mindplay-dk/1b0dde22160c31e4f76b4347bb3da1b1

    Guidelines for upgrading the minimum #PHP #version #requirements of packages and projects.

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 7/09/2023

    GitHub - bmewburn/vscode-intelephense : PHP intellisense for Visual Studio Code
    ▻https://github.com/bmewburn/vscode-intelephense#quick-start

    VSCodium + extension Intelephense PHP : mémo pour désactiver l’extension par défaut de VSCodium

    #Intelephense #vscodium #php

    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 7/09/2023

    GitHub - easy-coding-standard/easy-coding-standard : The Easiest way to add coding standard to your PHP project
    ▻https://github.com/easy-coding-standard/easy-coding-standard

    ECS : une alternative à phpcs/phpcbf pour l’application des « coding standard » en PHP
    L’extension VSCodium est téléchargeable sur ▻https://marketplace.visualstudio.com/items?itemName=azdanov.vscode-easy-coding-standard

    #easy-coding-standard #coding_standard #php #phpcbf #phpcs #vscodium

    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 15/06/2023

    #PHP Annotated – June 2023 | The PhpStorm Blog
    ▻https://blog.jetbrains.com/phpstorm/2023/06/php-annotated-june-2023

    ▻https://developer.wordpress.com/2023/05/23/wp-now-launch-a-local-environment-in-seconds

    wp-now – A #local_dev_environment from the WordPress engineering team. This tool leverages WebAssembly to operate PHP on top of Node.js’ webserver. It’s faster than Docker-based environments and can be used with any PHP apps, although, you’ll have to figure out a way to run your DB.

    ▻https://github.com/jolicode/castor

    jolicode/castor – A #task_runner and #command_launcher designed with a focus on developer experience, built using PHP.

    ▻https://github.com/ProjektGopher/whisky

    ProjektGopher/whisky – Simple and framework-agnostic #CLI tool for managing and enforcing a PHP project’s #git #hooks across a team.

    ▻https://librarianphp.dev

    librarianphp/librarian – A #static_site_generator and #markdown indexer inspired by Hugo and DEV, written in PHP.

    ▻https://localheinz.com/articles/2023/05/10/avoiding-empty-in-php

    Avoiding empty() in PHP by Andreas Möller.

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 29/05/2023

    PHP : Configuration à l’exécution - Manual
    ▻https://www.php.net/manual/fr/opcache.configuration.php#ini.opcache.blacklist-filename

    Utiliser une blackliste pour désactiver PHP OPcache sur certains fichiers/répertoires
    Voir aussi ▻https://stackoverflow.com/a/56256382 pour désactiver ponctuellement l’OPcache d’un fichier

    #PHP #OPcache #configuration #blackliste

    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 24/04/2023
    1
    @rastapopoulos
    1

    #WordPress Playground
    ▻https://developer.wordpress.org/playground
    ▻https://wordpress.github.io/wordpress-playground

    WordPress Playground brings key platform dependencies into the browser. Here’s a quick breakdown of how it works:

    – #PHP runs as a #WebAssembly binary
    – MySQL is replaced for SQLite via a WordPress plugin
    – Web server is implemented with the Service Worker API

    Faire tourner un WP directement dans son navigateur, cas d’usage :

    - Single-click website clones to experiment with design updates and plugins
    – WordPress programming tutorials in the browser without any local setup
    – Zero-setup website builders
    – PHP and WordPress versions switchers—helpful for testers
    – Bug reports that include a real reproduction
    – Single-click development environments for reviewing code, onboarding new developers, or debugging failed tests directly in the CI (imagine visiting WordPress.org, pressing a button, and starting your first PR right there)

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 24/04/2023

    Online #PHP editor | #Test code in 250+ PHP versions
    ▻https://3v4l.org

    https://3v4l.org/s/site_thumb.png

    #shell #online

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
0 | 25 | 50 | 75 | 100 | 125 | 150 | 175 | 200 | ... | 550

Thèmes liés

  • #php
  • technology: php
  • #spip
  • programminglanguage: php
  • technology: php
  • programminglanguage: php
  • #laravel
  • #programming
  • #php-development
  • #version
  • #php7
  • #php-fpm
  • #debian
  • #web-development
  • #apache
  • #développement
  • #laragon
  • #web_dev
  • #max_children
  • technology: http
  • #vscodium
  • #configuration
  • #cli
  • #documentation
  • #coding_standard
  • #forum
  • #ssh
  • #imagemagick
  • city: montpellier
  • #news_item
  • #php
  • #operators
  • technology: api
  • technology: web server
  • #aws
  • #maintien_de_l'ordre
  • #violence
  • #security
  • #politique
  • #webassembly