积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(12)PHP(12)Laravel(12)

语言

全部英语(7)中文(简体)(5)

格式

全部PDF文档 PDF(12)
 
本次搜索耗时 0.079 秒,为您找到相关结果约 12 个.
  • 全部
  • 后端开发
  • PHP
  • Laravel
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Laravel 5.0 Documentation

    iii. Contribution Guide i. Bug Reports ii. Core Development Discussion iii. Which Branch? iv. Security Vulnerabilities v. Coding Style 3. Setup i. Installation i. Install Composer ii. Install Laravel Upgrading To 4.1 From 4.0 Contribution Guide Bug Reports Core Development Discussion Which Branch? Security Vulnerabilities Coding Style Prologue Laravel 5.0 Laravel 4.2 Laravel 4.1 Laravel 5.0 introduces category. Move your views from app/views to the new resources/views directory. For better security by default, Laravel 5.0 escapes all output from both the {{ }} and {{{ }}} Blade directives
    0 码力 | 242 页 | 1.44 MB | 1 年前
    3
  • pdf文档 Laravel 3.2 Documentation

    2.8  Fix double slash bug in URLs when using languages and no "index.php".  Fix possible security issue in Auth "remember me" cookies. Upgrading From 3.2.7  Replace the laravel folder. Groups Route groups allow you to attach a set of attributes to a group of routes, allowing you to keep your code neat and tidy. Route::group(array('before' => 'auth'), function() { Route::get('panel' Bundles are the heart of the improvements that were made in Laravel 3.0. They are a simple way to group code into convenient "bundles". A bundle can have it's own views, configuration, routes, migrations
    0 码力 | 139 页 | 1.13 MB | 1 年前
    3
  • pdf文档 Learning Laravel

    regular double braces syntax {{ }}, are filtered through PHP's htmlspecialchars function, for security (preventing malicious injection of HTML in the view). If you would like to bypass this behavior register the composer (* being a wildcard). You can also select a single view (e.g. 'home') of a group of routes under a subfolder (e.g. 'users.*'). Execute arbitrary PHP code Although it might not be protected function mapWebRoutes(Router $router) { https://riptutorial.com/ 28 $router->group([ 'namespace' => $this->namespace, 'middleware' => 'web', ], function ($router) {
    0 码力 | 216 页 | 1.58 MB | 1 年前
    3
  • pdf文档 The Laravel Handbook

    are loaded by the RouteServiceProvider and all of them will | be assigned to the "web" middleware group. Make something great! | */ Route::get('/newdog', function () { return view('newdog'); which you don’t want to write yourself, as it’s a quite important and needs to be well tested for security issues. 56 I recommend you take a look at the file structure and compare it to the first project
    0 码力 | 111 页 | 14.25 MB | 1 年前
    3
  • pdf文档 《Slides Dev Web》 11. HTTPS

    HTTP sécurisé par SSL/TLS, par défaut sur le port 443 1 Secure Socket Layer –> Transport Layer Security • Conçu par Netscape (v2.0 en 1994, v3.0 en 1996) • Brevet racheté par l’IETF : TLS v1.0 en 1999 minimisent et accélèrent les échanges • Certificats gratuits • Mise en place simplifiée Ressources • Security Party 23.10.20097 • SebSauvage8 • HTTPS en détails : – Diagramme de séquence HTTPS9 – Diagramme com/networking/ssl-tls/https-ssl-tls-session-for-spdy.pdf 11https://security.stackexchange.com/questions/20803/how-does-ssl-tls-work/20847#20847 12https://security.stackexchange.com/questions/55454/how-long-does-an-h
    0 码力 | 6 页 | 109.17 KB | 1 年前
    3
  • pdf文档 《Slides Dev Web》 12. Risques applicatifs

    disponibles – nos applications : c’est nous qui en sommes responsables OWASP1 • Open Web Application Security Project 1https://owasp.org/ 1 • Fondation pour améliorer la sécurité des webapps • Fondée en hahwul.com/cullinan/history-of-owasp-top-10/ 9https://cheatsheetseries.owasp.org/cheatsheets/NPM_Security_Cheat_Sheet.html 2 – HTML – SQL – Javascript – … Injections SQL • Modifier les requêtes envoyées 21https://www.ncsc.gov.uk/guidance/password-guidance-simplifying-your-approach 22https://www.microsoft.com/security/blog/2021/09/15/the-passwordless-future-is-here-for-your-microsoft- account/ 23https://hacks.mozilla
    0 码力 | 12 页 | 474.37 KB | 1 年前
    3
  • pdf文档 Laravel 5.2 中文文档

    中文学习资源 3 'api' => [ 'throttle:60,1', ], ]; 然后,web 组像这样分配给路由: Route::group(['middleware' => ['web']], function () { // }); 访问频率限制 一个新的访问频率限制中间件已经被内置到框架中,从而允许你轻松限制给定 e('profile'); 路由群组 & 命名路由 如果你在使用路由群组,可以通过在路由群组的属性数组中指定 as 关键字来为群组中的路 由设置一个共用的路由名前缀: Route::group(['as' => 'admin::'], function () { Route::get('dashboard', ['as' => 'dashboard', function () 4、路由群组 路由群组允许我们在多个路由中共享路由属性,比如中间件和命名空间等,这样的话我们 就不必为每一个路由单独定义属性。共享属性以数组的形式作为第一个参数被传递 给 Route::group 方法。 下面我们通过几个简单的应用实例来演示路由群组。 本文档由 Laravel 学院(LaravelAcademy.org)提供 Laravel 学院致力于提供优质 Laravel
    0 码力 | 377 页 | 4.56 MB | 1 年前
    3
  • pdf文档 Laravel 5.6 中文文档

    学院致力于提供优质 Laravel 中文学习资源:http://laravelacademy.org 2 Route::middleware('auth:api', 'throttle:60,1')->group(function () { Route::get('/user', function () { // }); }); 在 Laravel 5.6 中, 属性,可以将属性名传递 给 throttle 中间件,以便用于计算最大请求次数计数: Route::middleware('auth:api', 'throttle:rate_limit,1')->group(function () { Route::get('/user', function () { // }); }); 广播频道类 如果你的应用消费 定义属性。共享属性以数组的形式作为第一个参数被传递给 Route::group 方法。 中间件 要给某个路由分组中定义的所有路由分配中间件,可以在定义分组之前使用 middleware 方法。中间件将会按照数组中定义的顺序依次执行: Route::middleware(['first', 'second'])->group(function () { Route::get('/'
    0 码力 | 377 页 | 14.56 MB | 1 年前
    3
  • pdf文档 Laravel 5.1 中文文档

    rofile' ]); 3.1 路由群组 & 命名路由 如果你在使用路由群组,可以在路由群组属性数组中指定 as 关键字来为群组中的路由设置 一个共用的路由名前缀: Route::group(['as' => 'admin::'], function () { Route::get('dashboard', ['as' => 'dashboard', function () 共享属性的路由就不必再各自定义这些属性。共享属性以数组的形式被作为第一个参数传递 到 Route::group 方法中。 想要了解更多路由群组,我们希望通过几个简单的应用实例来展示其特性。 4.1 中间件 要分配中间件给群组中所有路由,可以在群组属性数组中使用 middleware 键。中间件将会 按照数组中定义的顺序依次执行: Route::group(['middleware' => 'auth'], function 学院(LaravelAcademy.org)提供 22 Route::group(['namespace' => 'Admin'], function(){ // Controllers Within The "App\Http\Controllers\Admin" Name space Route::group(['namespace' => 'User'], function()
    0 码力 | 307 页 | 3.46 MB | 1 年前
    3
  • pdf文档 Laravel 6.0 中文文档

    本文档由学院君提供 学院君致力于提供优质 Laravel 中文学习资源:https://xueyuanjun.com 183 个路由单独定义属性。共享属性以数组的形式作为第一个参数被传递 给 Route::group 方法。 嵌套的分组会尝试智能地将属性合并到父分组中,中间件 和 where 条件会直接被合并,而路由命名、命名空间、以及路由前 缀会被附加到父组件对应属性之后。命名空间分隔符和 URI 中的斜 要给某个路由分组中定义的所有路由分配中间件,可以在定义分组之 前使用 middleware 方法。中间件将会按照数组中定义的顺序依次执 行: Route::middleware(['first', 'second'])->group(functio n () { Route::get('/', function () { // Uses first & second Middleware }); Route::get('user/profile' com 184 命名空间 路由分组另一个通用的例子是使用 namespace 方法分配同一个 PHP 命名空间给该分组下的多个控制器: Route::namespace('Admin')->group(function () { // Controllers Within The "App\Http\Controllers\Ad min" Namespace }); 默认情况下,RouteServiceProvider
    0 码力 | 1442 页 | 14.66 MB | 1 年前
    3
共 12 条
  • 1
  • 2
前往
页
相关搜索词
Laravel5.0Documentation3.2LearningTheHandbookSlidesDevWeb11HTTPS12Risquesapplicatifs5.2中文文档5.65.16.0
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩