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 7 / 11

Liste des liens

218 results tagged php x
Transphporm - Fixing PHP Templating
2017-02-9 15:16 - permalink -

Régler le problème du templating en php en séparant vraiment le php et le HTML, à la manière du css. Brillant !

Le dépôt du projet sur github : https://github.com/Level-2/Transphporm

php templates
- https://r.je/transphporm-php-templates.html
Intervention Image - Introduction
2017-02-9 12:51 - permalink -

Librairie de manipulation d'images en php

images librairie php
- http://image.intervention.io/
DevFreeBooks
2017-02-7 12:54 - permalink -

Livres pour développeurs.
Via plein de monde

developpement free git java javascript livre php python svg tutoriels
- https://devfreebooks.github.io/
20 Awesome PHP Libraries For Early 2017 | Tutorialzine
2017-01-31 13:5 - permalink -

via Bronco

librairie php
- http://tutorialzine.com/2017/01/20-awesome-php-libraries-for-early-2017/
OWASP Zed Attack Proxy Project - OWASP
2016-12-21 15:31 - permalink -

The OWASP Zed Attack Proxy (ZAP) is one of the world’s most popular free security tools and is actively maintained by hundreds of international volunteers*. It can help you automatically find security vulnerabilities in your web applications while you are developing and testing your applications. Its also a great tool for experienced pentesters to use for manual security testing.

librairie php sécurité test tools
- https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project
PHPMailer - A full-featured email creation and transfer class for PHP
2016-12-21 15:9 - permalink -

Class Features

  • Probably the world's most popular code for sending email from PHP!
  • Used by many open-source projects: WordPress, Drupal, 1CRM, SugarCRM, Yii, Joomla! and many more
  • Integrated SMTP support - send without a local mail server
  • Send emails with multiple TOs, CCs, BCCs and REPLY-TOs
  • Multipart/alternative emails for mail clients that do not read HTML email
  • Support for UTF-8 content and 8bit, base64, binary, and quoted-printable encodings
  • SMTP authentication with LOGIN, PLAIN, NTLM, CRAM-MD5 and Google's XOAUTH2 mechanisms over SSL and TLS transports
  • Error messages in 47 languages!
  • DKIM and S/MIME signing support
  • Compatible with PHP 5.0 and later
  • Much more!

Why you might need it

Many PHP developers utilize email in their code. The only PHP function that supports this is the mail() function. However, it does not provide any assistance for making use of popular features such as HTML-based emails and attachments.

Formatting email correctly is surprisingly difficult. There are myriad overlapping RFCs, requiring tight adherence to horribly complicated formatting and encoding rules - the vast majority of code that you'll find online that uses the mail() function directly is just plain wrong! Please don't be tempted to do it yourself - if you don't use PHPMailer, there are many other excellent libraries that you should look at before rolling your own - try SwiftMailer, Zend_Mail, eZcomponents etc.

The PHP mail() function usually sends via a local mail server, typically fronted by a sendmail binary on Linux, BSD and OS X platforms, however, Windows usually doesn't include a local mail server; PHPMailer's integrated SMTP implementation allows email sending on Windows platforms without a local mail server.

librairie mail php
- https://github.com/PHPMailer/PHPMailer
php-encryption
2016-12-21 14:55 - permalink -

This is a library for encrypting data with a key or password in PHP. It requires PHP 5.4 or newer. The current version is v2.0.0, which is expected to remain stable and supported by its authors with security and bugfixes until at least January 1st, 2019.

The library is a joint effort between Taylor Hornby and Scott Arciszewski as well as numerous open-source contributors.

What separates this library from other PHP encryption libraries is, firstly, that it is secure. The authors used to encounter insecure PHP encryption code on a daily basis, so they created this library to bring more security to the ecosystem. Secondly, this library is "difficult to misuse." Like libsodium, its API is designed to be easy to use in a secure way and hard to use in an insecure way.

Peut-être utile pour BoZoN : Bronco, si tu me lis...

BoZon librairie php sécurité
- https://github.com/defuse/php-encryption
PHP: base64_encode - Manual
2016-12-14 23:53 - permalink -

Base64 encoding of large files.

Base64 encoding converts triples of eight-bit symbols into quadruples of six-bit symbols. Reading the input file in chunks that are a multiple of three bytes in length results in a chunk that can be encoded independently of the rest of the input file. MIME additionally enforces a line length of 76 characters plus the CRLF. 76 characters is enough for 19 quadruples of six-bit symbols thus representing 19 triples of eight-bit symbols. Reading 57 eight-bit symbols provides exactly enough data for a complete MIME-formatted line. Finally, PHP's default buffer size is 8192 bytes - enough for 143 MIME lines' worth of input.

So if you read from the input file in chunks of 8151 (=57*143) bytes you will get (up to) 8151 eight-bit symbols, which encode as exactly 10868 six-bit symbols, which then wrap to exactly 143 MIME-formatted lines. There is no need to retain left-over symbols (either six- or eight-bit) from one chunk to the next. Just read a chunk, encode it, write it out, and go on to the next chunk. Obviously the last chunk will probably be shorter, but encoding it is still independent of the rest.

while(!feof($input_file))
{
    $plain = fread($input_file, 57 * 143);
    $encoded = base64_encode($plain);
    $encoded = chunk_split($encoded, 76, "\r\n");
    fwrite($output_file, $encoded);
}

Conversely, each 76-character MIME-formatted line (not counting the trailing CRLF) contains exactly enough data for 57 bytes of output without needing to retain leftover bits that need prepending to the next line. What that means is that each line can be decoded independently of the others, and the decoded chunks can then be concatenated together or written out sequentially. However, this does make the assumption that the encoded data really is MIME-formatted; without that assurance it is necessary to accept that the base64 data won't be so conveniently arranged.

php tutoriels téléchargement
- http://php.net/manual/en/function.base64-encode.php
php-u2flib-server
2016-10-17 11:53 - permalink -

Librairie pour pouvoir utiliser les clefs USB U2F (pour l'authentification à 2 facteurs).

cryptographie librairie php U2F
- https://developers.yubico.com/php-u2flib-server/
◉ PHP Pitfalls
2016-09-26 19:51 - permalink -

Des trucs à savoir pour développer en PHP

php tutoriels
- https://secure.phabricator.com/book/phabflavor/article/php_pitfalls/
GitHub - jeckman/YouTube-Downloader: PHP script for downloading videos from youtube; also parsing youtube feed into RSS enclosures for podcatchers
2016-09-13 11:41 - permalink -

via KraZhtest

application php téléchargement youtube
- https://github.com/jeckman/YouTube-Downloader
De l’usage des méthodes statiques | Gerald's Blog
2016-09-2 0:5 - permalink -

Petits rappels qui font du bien.
Bronco, si tu me lis, va y faire un tour pour la V3 de BoZon

php tutoriels
- http://www.croes.org/gerald/blog/de-lusage-des-methodes-statiques/931/
Documentation pour le micro-framework PHP Jin
2016-09-1 23:46 - permalink -
documentation framework JIN php
- https://github.com/diatem-net/framework-jin-documentation
Framework PHP JIN
2016-09-1 23:44 - permalink -

Qu'est ce que Jin ?

Jin est un framework PHP léger construit comme une boite à outils. L'objectif est de répondre à des problématiques de développement spécifiques en offrant des solutions intégrables dans des environnements CMS Open source diversifiés. L'idée est de limiter la multi-spécialisation en offrant une solution transversale et modulable.
Quelles sont les possibilités offertes ?

Base de données
    Connexion BDD (MySql, Sqlite3, PostgreSQL et connecteurs spécifiques CMS) (jin/db/*)
    Connexion BDD NoSql (MongoDB)
    Requêtage simplifié en bases de données (jin/query/Query)
    Effectuer des requêtes de requêtes (jin/query/QueryOfQuery)
    Faciliter le traitement de résultats de requêtes. (jin/query/QueryResult)
Communication
    Déploiement et appel de services REST sécurisés (jin/com/rest/*)
    Déploiement et appel de Webservices (jin/com/webservice/*)
    Travail facilité avec Curl (jin/com/Curl)
    Connexion boite mail IMAP (jin/mail/MailConnector)
    SSO (Authentification unifiée, via l'usage d'un serveur CAS) (jin/external/jasig/*)
    Communication facilitée avec ElasticSearch. (Construction de requêtes de recherche complexes) (jin/external/diatem/sherlock/*)
    Utilisation d'API de partage social (Facebook, Google+, Instagram, Linkedin, Pinterest, Twitter)
Optimisation du développement
    Gestion des logs (jin/log/Log)
    Système de debug avancé (jin/log/Debug)
    Analyse des performances (jin/log/PerfAnalyser)
Etendre PHP
    Travail facilité avec le système de fichiers (jin/filesystem/*)
    Lecture et création rapide et facile de fichiers Csv et Excel (jin/dataformat/*)
    Gestion de fichiers sécurisé (jin/filesystem/PublicSecuredFile)
    Classes facilitant le travail avec les listes, les tableaux, les numéraires, les chaînes et les objets temporels (jin/lang/*)
    Travail facilité avec Json (jin/dataformat/JSon)
    Ensemble de classes permettant le retraitement d'images et l'application de filtres (jin/image/*)
Accélérer et faciliter les développements front-end
    Composants d'affichage (jin/output/components/*)
    Moteur simplifié de routage et de rendu pour la construction d'application Web (jin/output/webapp/*)
    Gestion de formulaires (jin/output/form/*)
    Détection du contexte (Navigateur et Device) (jin/context/*)
    Envoi de mails avancés (jin/mail/MailSender)
    Gestion des traductions (jin/language/*)
    Mise en cache de données. (Support du cache fichier et Memcache) (jin/cache/*)
framework JIN php
- https://github.com/diatem-net/framework-jin
Apprendre à programmer avec le framework PHP Symfony 3
2016-08-29 14:7 - permalink -

via Yome

php Symfony tutoriels
- http://symfony.developpez.com/documentation/symfony3/part01-symfony3-et-les-fondamentaux-http/
Trouver l'extension d'un fichier en php
2016-08-19 19:4 - permalink -
 $extension = end(explode(".", $file_name));
code extensions fichiers php
- http://php.net/manual/fr/function.is-file.php
PHP UTF-8 cheatsheet - blog.loftdigital.com
2016-08-16 1:58 - permalink -

Bonnes pratiques pour utiliser UTF-8 avec PHP.

php UTF-8
- http://blog.loftdigital.com/blog/php-utf-8-cheatsheet
GitHub - ziadoz/awesome-php: A curated list of amazingly awesome PHP libraries, resources and shiny things.
2016-08-15 13:35 - permalink -
librairie php
- https://github.com/ziadoz/awesome-php
The PHP Coding Standards Fixer for PSR-1 and PSR-2
2016-07-12 16:47 - permalink -
outils php
- http://cs.sensiolabs.org/
PHP: La bonne manière. Plugin SublimeText 2 pour la respecter
2016-07-10 23:54 - permalink -
php plugin sublime tutoriels
- https://github.com/benmatselby/sublime-phpcs
page 7 / 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