Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5169 links 

page 4 / 11

Liste des liens

218 results tagged php x
About Xpdf and XpdfReader
2019-05-22 18:1 - permalink -

Pour convertir des pdf

developpement pdf php
- http://www.xpdfreader.com/about.html
Les générateurs en PHP – De geek à directeur technique
2019-05-17 11:45 - permalink -
function monGenerateur() {
    yield 'Alice' => 29;
    yield 'Bob' => 34;
    yield 'Camille' => 23;
}
foreach (monGenerateur() as $name => $age) {
    print("$name a $age ans\n");
}
itérateurs php
- https://www.geek-directeur-technique.com/2019/04/18/les-generateurs-en-php
Fixing PHP Fatal Error: Allowed Memory Size Exhausted
2019-04-2 1:27 - permalink -
error memory php
- https://www.airpair.com/php/fatal-error-allowed-memory-size
Cours CURL - Tuto CURL PHP - Formations Script Curl Débutant
2019-03-18 15:42 - permalink -
curl php tutoriels
- http://oseox.fr/curl/
Immutable MVC in PHP (Part 2) - Immutable CRUD application - Tom Butler
2019-03-12 23:0 - permalink -

La deuxième partie du tuto de Tom Butler.

mvc php tutoriels
- https://r.je/immutable-mvc-crud-application
Immutable MVC: MVC In PHP 2019 Edition (Part 1)
2019-02-22 14:20 - permalink -

Pour remettre les points sur les i.

framework php tutoriels
- https://r.je/immutable-mvc-in-php.html
Clean Code concepts adapted for PHP
2019-02-1 12:22 - permalink -

Software engineering principles, from Robert C. Martin's book Clean Code, adapted for PHP. This is not a style guide. It's a guide to producing readable, reusable, and refactorable software in PHP.

Not every principle herein has to be strictly followed, and even fewer will be universally agreed upon. These are guidelines and nothing more, but they are ones codified over many years of collective experience by the authors of Clean Code.

Inspired from clean-code-javascript.

Although many developers still use PHP 5, most of the examples in this article only work with PHP 7.1+.

bonnes-pratiques php tutoriels
- https://github.com/OlivierToussaint/clean-code-php
SimpleSAMLphp
2019-01-14 10:33 - permalink -

SimpleSAMLphp is an award-winning application written in native PHP that deals with authentication. The project is led by UNINETT, has a large user base, a helpful user community and a large set of external contributors.

Utilisé par FileSender de Renater

Le dépôt Github : https://github.com/simplesamlphp

php sécurité webauthn
- https://simplesamlphp.org/
Slim Framework - Slim Framework
2018-12-18 16:33 - permalink -
framework php
- https://www.slimframework.com/
Un nouveau framework de mon cru.
2018-10-8 10:21 - permalink -

Salut les potos,

Je me suis mis en tête de développer un framework from scratch en essayant d'appliquer au maximum les recommandations de Tom Butler sur la POO.

C'est encore dans son jus et les plâtres ne sont pas encore secs. Mais normalement, c'est fonctionnel.

N'hésitez pas à me dire ce que vous en pensez. Est-ce que je fais fausse route ? Est-ce que vous voyez des corrections/améliorations à apporter ?

Quand j'aurai un peu de temps, j'essaierai de faire un readme un peu plus étoffé. Mais en attendant, le code est commenté. Il faut une base MySQL. Un exemple de tables est donné dans le code.

Dans l'attente de vos retours.

developpement framework MySQL php poo
- https://framagit.org/jerrywham/framework-sigesth
Php · Examples · Ci · Aide · GitLab
2018-10-7 22:26 - permalink -

Voir également https://github.com/atoum/atoum pour les tests

git gitlab php
- https://framagit.org/help/ci/examples/php.md
Note: y a des fois j'te jure
2018-09-14 15:44 - permalink -

Pour être sûr qu'il n'y ait pas de doublon dans ta base ??? Si c'est pour compter le nombre d'entrée de ton tableau, là, c'est whaoou !

code fun php
- https://book.knah-tsaeb.org/?lxXcCw
php-regex-router.php
2018-09-11 12:52 - permalink -
<?php
// dangerously simple PHP regular expression URL router
// requires a mod_rewrite like "RewriteRule . /index.php [L]"

function get($url, $callback) {
    $matches = array();
    if (preg_match('~' . $url . '~', $_SERVER['REQUEST_URI'], $matches)) {
        echo call_user_func_array($callback, $matches);
        die();
    }
}

get('foo', function($url) {
    return 'you got foo';
});

get('bar([\d])', function($url, $digit) {
    return 'bar number ' . $digit;
});

get('.*', function() {
    return 'catch all. try /foo or /bar[0-9]';
});
php router snippets
- https://gist.github.com/dave1010/1214164
Introduction à l'injection de dépendances en PHP - OpenClassrooms
2018-08-26 22:14 - permalink -

Je te recommande plutôt les articles de Tom Butler : https://r.je/

injection oldfav php webdev
- https://openclassrooms.com/fr/courses/1279096-introduction-a-linjection-de-dependances-en-php
Couscous! Put your documentation in a website!
2018-07-24 11:47 - permalink -

Couscous turns Markdown documentation into beautiful websites. It's GitHub Pages on steroids.

documentation markdown php
- http://couscous.io/
PHP-Spider, a configurable and extensible PHP web spider
2018-07-24 11:41 - permalink -

PHP-Spider Features :

  • supports two traversal algorithms: breadth-first and depth-first
  • supports crawl depth limiting, queue size limiting and max downloads limiting
  • supports adding custom URI discovery logic, based on XPath, CSS selectors, or plain old PHP
  • comes with a useful set of URI filters, such as Domain limiting
  • supports custom URI filters, both prefetch (URI) and postfetch (Resource content)
  • supports custom request handling logic
  • comes with a useful set of persistence handlers (memory, file. Redis soon to follow)
  • supports custom persistence handlers
  • collects statistics about the crawl for reporting
  • dispatches useful events, allowing developers to add even more custom behavior
  • supports a politeness policy
  • will soon come with many default discoverers: RSS, Atom, RDF, etc.
  • will soon support multiple queueing mechanisms (file, memcache, redis)
  • will eventually support distributed spidering with a central queue
aspirateur php spider
- https://mvdbos.github.io/php-spider/
An application for building and managing Phars.
2018-07-24 11:38 - permalink -

https://box-project.github.io/box2/

phar php
- https://github.com/box-project/box2
BookStack
2018-07-6 14:50 - permalink -

Via Knah Tsaeb

php wiki
- https://www.bookstackapp.com/
Photon, photo gallery
2018-07-4 17:54 - permalink -

Une gallerie minimaliste en php (1 fichier), écrite par Timo.

galerie php vanilla
- https://github.com/timovn/photon
Koel's Official Documentation
2018-06-20 23:37 - permalink -

Koel (also styled as koel, with a lowercase k) is a simple web-based personal audio streaming service written in Vue at the client side and Laravel on the server side. Targeting web developers, Koel embraces some of the more modern web technologies – flexbox, audio and drag-and-drop API to name a few – to do its job

Un fork intéressant : https://github.com/X-Ryl669/kutr

autohébergement Musique partage php
- https://koel.phanan.net/docs/#/
page 4 / 11


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2