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
How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

Simple Guide: Sending Email with PHP ScriptSimple Guide: Sending Email with PHP ScriptMay 12, 2025 am 12:02 AM

PHPisusedforsendingemailsduetoitsbuilt-inmail()functionandsupportivelibrarieslikePHPMailerandSwiftMailer.1)Usethemail()functionforbasicemails,butithaslimitations.2)EmployPHPMailerforadvancedfeatureslikeHTMLemailsandattachments.3)Improvedeliverability

PHP Performance: Identifying and Fixing BottlenecksPHP Performance: Identifying and Fixing BottlenecksMay 11, 2025 am 12:13 AM

PHP performance bottlenecks can be solved through the following steps: 1) Use Xdebug or Blackfire for performance analysis to find out the problem; 2) Optimize database queries and use caches, such as APCu; 3) Use efficient functions such as array_filter to optimize array operations; 4) Configure OPcache for bytecode cache; 5) Optimize the front-end, such as reducing HTTP requests and optimizing pictures; 6) Continuously monitor and optimize performance. Through these methods, the performance of PHP applications can be significantly improved.

Dependency Injection for PHP: a quick summaryDependency Injection for PHP: a quick summaryMay 11, 2025 am 12:09 AM

DependencyInjection(DI)inPHPisadesignpatternthatmanagesandreducesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itallowspassingdependencieslikedatabaseconnectionstoclassesasparameters,facilitatingeasiertestingandscalability.

Increase PHP Performance: Caching Strategies & TechniquesIncrease PHP Performance: Caching Strategies & TechniquesMay 11, 2025 am 12:08 AM

CachingimprovesPHPperformancebystoringresultsofcomputationsorqueriesforquickretrieval,reducingserverloadandenhancingresponsetimes.Effectivestrategiesinclude:1)Opcodecaching,whichstorescompiledPHPscriptsinmemorytoskipcompilation;2)DatacachingusingMemc

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft