Download the PHP package ahmetbarut/validation without Composer

On this page you can find all versions of the php package ahmetbarut/validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package validation

Illuminate\Validation Laravel'den esinlenilmiştir.

Özellikleri

Gereklilikler

setFields yöntemi, form alanlarını dizi şeklinde vermenizi sağlar. setRules yöntemi, kurallardan geçecek olan alanları belirtmemizi sağlar. make yöntemi, sıraya alınan işleri yürütür ve sonucu döndürür. Başarı durumunda true, başarısızlık durumunda ise hata mesajı döndürür.

Kurallar

Kurallar, ilgili input alanlarının karşılaması gereken koşulları belirtmeyi sağlar. Yani basitçe ilgili input alanında sadece sayı ve 1-9 arasında değeri kabul ediyoruz normal durumda bunun için koşul yazıp, o şekilde doğrularız burda sorun yok ama birden fazla form alanı varsa ? Bu durumda sürekli kopyala/yapıştır yapmamız gerekebilir fakat burda kural yazınca ona bile gerek kalmıyor 1 defa yaz sürekli kullan ve karmaşayı da önlüyor.

Kurulum Ve Kural Tanımlama

Kurulum

Kurulum için composer'e ihtiyacımız var. getcomposer.com adresinden indirebilirsiniz.

Eğer uygulamanızda Container(Kapsayıcı) kullanılıyorsa nesneyi kapsayıcı içinde oluşturmanız daha sağlıklı olur.

Kural Tanımlama

Kural tanımlamak için öncelikle bu arayüzü ahmetbarut\Validation\Validation\Rule implement etmeniz gerekiyor. İlgili arayüzde 2 yöntemi ekletmek isteyecek. Bunlar: check ve message check yönteminde, koşul yazmanızı sağlar ve duruma göre bool değer döndürmeniz gerekli. message yönteminde eğer başarısızlık varsa ilgili mesaj geriye döndürülür. Örenk Sınıf:

Bu sınıfı nesneye tanıtmak için nesneyi ilk oluşturduğumuzda verebiliriz. Bu arada nesneyi isteklerin ilk geldiği veya isteklerin geçtiği yerde oluşturmanız gerekli sonraki durumlarda böyle bir zorunluluk yok. Yani şöyle, eğer kural tanımlanacaksa belirttiğim şekilde olması gerekli. Sonraki durumda kuralların tutulduğu değişken static olduğu için nesneyi bir sonraki sefer ürettiğinizde yok olmaz önceki değerleri taşır.

Kural tanımlamanın 1 kuralı vardır. Dizi şeklinde verilmesi gerekir. Örn ["kural_adi" => Kural::class] kurala verilmek istenen isim ve sınıfın alan adı yani namespace. Kuralı tanımlayalım :

Verilen form alanlarını nesne üzerinden almak istiyorsanız

Parametre Gönderme

Kurala parametre atanabiliyor. Ama öncesinde ilgili kuralın __construct yöntemi tanımlı olmalı. Onun dışında herhangi bir eklemeye ihtiyaç duymuyor.


All versions of validation with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4.23
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ahmetbarut/validation contains the following files

Loading the files please wait ....