search
HomeBackend DevelopmentPHP TutorialForms toolkit with sync token

The 2011 Universiade in Shenzhen was coming soon, so Shenzhen University wanted to develop a volunteer service station, and I was arrested by the Youth League Committee to serve. In the process, I wrote a small form toolkit. The verification function is not implemented by myself and relies on Kohana_Validate (Kohana V3.0x branch). But I followed what "J2EE Disgusting Mode" said and got a synchronization token to prevent repeated submission of forms. This component also sets up an abstraction layer. I think the verification code can also be integrated as a token subclass. But I don’t have time to do it now, so I’ll share the code first and wait for it to be sold~
  1. namespace Form;
  2. use VolunteerFormAbstractForm;
  3. class NewsPoster extends AbstractForm
  4. {
  5. /**
  6. * Add all preset form elements
  7. *
  8. * @abstract
  9. */
  10. public function bindAllElement()
  11. {
  12. $this->bindToken(' valid_token')
  13. ->addElement('news title', 'title',
  14. array(
  15. 'not_empty' => null,
  16. 'max_length' => array(60)
  17. ),
  18. array(
  19. 'trim ' => null,
  20. 'htmlspecialchars' => array(ENT_QUOTES),
  21. ))
  22. ->addElement('Abbreviated URL', 'urlName',
  23. array(
  24. 'max_length' => array(50 ),
  25. 'regex' => array('~^[a-zA-Z0-9-%]+$~')
  26. ),
  27. array(
  28. 'trim' => null,
  29. 'urlencode' = > null,
  30. ))
  31. ->addElement('keyword', 'keyWords',
  32. array(
  33. 'max_length' => array(100),
  34. ),
  35. array(
  36. 'trim' => null,
  37. 'htmlspecialchars' => array(ENT_QUOTES),
  38. ))
  39. ->addElement('News Author & Reporter', 'author',
  40. array(
  41. 'max_length' => array(60),
  42. ),
  43. array(
  44. 'trim' => null,
  45. 'htmlspecialchars' => array(ENT_QUOTES),
  46. ))
  47. ->addElement('news editor', 'editor',
  48. array(
  49. 'max_length ' => array(60),
  50. ),
  51. array(
  52. 'trim' => null,
  53. 'htmlspecialchars' => array(ENT_QUOTES),
  54. ))
  55. ->addElement('News source', 'source',
  56. array(
  57. 'max_length' => array(60),
  58. ),
  59. array(
  60. 'trim' => null,
  61. 'htmlspecialchars' => array(ENT_QUOTES),
  62. ))
  63. ->addElement('News Category', 'category',
  64. array(
  65. 'not_empty' => null,
  66. 'digit' => null,
  67. 'regex' => array('~^[1- 9]d*$~')
  68. ),
  69. array())
  70. ->addElement('cover image', 'cover_image',
  71. array(),
  72. array(
  73. 'trim' => null,
  74. ' urlencode' => null,
  75. ))
  76. ->addElement('Contains media information', 'mediaTag',
  77. array(
  78. 'not_empty' => null,
  79. 'digit' => null,
  80. 'regex ' => array('~^[0123]$~')
  81. ),
  82. array())
  83. ->addElement('News summary', 'summary',
  84. array(
  85. 'max_length' => array (255),
  86. ),
  87. array(
  88. 'trim' => null,
  89. 'htmlspecialchars' => array(ENT_QUOTES),
  90. ))
  91. ->addElement('release status', 'state',
  92. array(
  93. 'not_empty' => null,
  94. 'digit' => null,
  95. 'regex' => array('~^[01]$~')
  96. ),
  97. array())
  98. -> ;addElement('"Whether to display on the homepage" option', 'showInHome',
  99. array(
  100. 'boolean' => null,
  101. ),
  102. array())
  103. ->addElement('News content', 'content ',
  104. array(
  105. 'not_empty' => null,
  106. ),
  107. array(
  108. 'tidy_parse_string' => array(
  109. array(
  110. 'indent' => true,
  111. 'output-xhtml' => true,
  112. 'clean' => true,
  113. 'drop-font-tags'=> true,
  114. 'show-body-only'=> true
  115. ), 'UTF8'),
  116. 'trim' => ; null
  117. ));
  118. }
  119. }
Copy code
  1. public function action_GET()
  2. {
  3. // Get the ID in the url
  4. $id = $this->request->param('id', null);
  5. // Send the token to View layer (placed in the hidden field of the form)
  6. $this->view['token'] = FormNewsPoster::getToken()->useToken();
  7. }
  8. public function action_POST()
  9. {
  10. $id = $this->request->param('id', null);
  11. $form = FormNewsPoster::factory($_POST);
  12. $form->bindAllElement();
  13. if ($form- >checkForm()) {
  14. // Verification passed, call the domain model to perform the operation~
  15. $this->view['success'] = true;
  16. } else {
  17. $this->view['success' ] = false;
  18. // Send the error message back to the view layer
  19. $this->view['message'] = array_values($form->getMessage());
  20. }
  21. }
Copy code
Forms toolkit with sync token Forms toolkit with sync token Forms toolkit with sync token


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version