码迷,mamicode.com
首页 >  
搜索关键字:php is_file 函数返回 false    ( 158087个结果
好家伙,你管这破玩意叫“双指针”?
微信搜索??「程序员小熊」,关注这个写干货的程序员,回复「算法」或「python」,即可获取经典算法或 python 电子书籍~ ...
分类:其他好文   时间:2021-04-20 14:42:03    阅读次数:0
攻防世界 部分writeup
1.simple_php ?<?php show_source(__FILE__); include("config.php"); $a=@$_GET['a']; $b=@$_GET['b']; if($a==0 and $a){ echo $flag1; } if(is_numeric($b)){ ...
分类:其他好文   时间:2021-04-20 14:34:36    阅读次数:0
05 RDD编程
一、词频统计: 读文本文件生成RDD lines lines=sc.textFile("file:///usr/local/spark/mycode/rdd/word.txt") lines.foreach(print) 将一行一行的文本分割成单词 words flatmap() words=lin ...
分类:其他好文   时间:2021-04-20 14:04:55    阅读次数:0
php trait使用详解
1.参考资料 官网trait介绍 larvel学院PHP新特性Trait 概览 跳转链接 链接 理解trait php 这门语言没法使用多继承即单继承模式,你只能使用你自己家里的东西因为你继承了自己家里的东西,同时你想 使用隔壁老王家里的东西这是不被允许的,即使你有继承权,但是我们不允许你进行继承多 ...
分类:Web程序   时间:2021-04-19 16:01:35    阅读次数:0
函数的递归调用
递归,就是函数内部自己调用自己,首先要把它想成函数的调用,如果一个函数递归调用了(自己调用了自己)5次,可以把它想成5个函数的调用,fn1 调用fn2(), fn2调用fn3(), fn3调用了fn4(), fn4调用了fn5(), 只不过fn1, fn2, fn3, fn4, fn5 都是一样的函 ...
分类:其他好文   时间:2021-04-19 15:54:43    阅读次数:0
[linux]Ubuntu18.04生成RSA密钥
生成RSA密钥 1. 制作密钥对 [root@host ~]$ ssh-keygen <== 建立密钥对 Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): ...
分类:系统相关   时间:2021-04-19 15:54:27    阅读次数:0
部分STL容器
string 容器 常见用法 string s1 = "Hello" string s2("Hello") string s3(s2) string s4 = s3 getline(cin,s)// 从cin中读取一行给s s.empty()// 空?true:false; s.size()//返回 ...
分类:其他好文   时间:2021-04-19 15:53:19    阅读次数:0
R语言中 %in%操作符
1、测试数据 > a <- 1:5 > b <- 3:7 > a [1] 1 2 3 4 5 > b [1] 3 4 5 6 7 2、取交集 > a %in% b [1] FALSE FALSE TRUE TRUE TRUE > a[a %in% b] [1] 3 4 5 > intersect(a ...
分类:编程语言   时间:2021-04-19 15:49:00    阅读次数:0
R语言中向量取唯一值
1、 > a <- c(1,2,2,2,3,1,1,3) > a [1] 1 2 2 2 3 1 1 3 > unique(a) [1] 1 2 3 > duplicated(a) [1] FALSE FALSE TRUE TRUE FALSE TRUE TRUE TRUE > !duplicate ...
分类:编程语言   时间:2021-04-19 15:48:44    阅读次数:0
shell-script - shell 如何获取 nginx 配置文件位置?
通过nginx -t获得 nginx=`nginx -t 2>&1 | grep configuration` if [ ! -z "$nginx" ];then nginxtmp="${nginx#*file}" nginxf="${nginxtmp%test*}" echo $nginxf fi ...
分类:系统相关   时间:2021-04-19 15:38:16    阅读次数:0
158087条   上一页 1 ... 69 70 71 72 73 ... 15809 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!