本文整理汇总了PHP中Conexao::inserir方法的典型用法代码示例。如果您正苦于以下问题:PHP Conexao::inserir方法的具体用法?PHP Conexao::inserir怎么用?PHP Conexao::inserir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Conexao
的用法示例。
在下文中一共展示了Conexao::inserir方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addslashes
$tipo = addslashes($_GET['tipo']);
if ($tipo) {
$where1 = array("tipo" => $tipo, "sigla_idioma" => "");
$db_tex = $base->seleciona('textos', $where1, null);
$up_where = json_encode($where1);
if ($db_tex) {
if (!empty($lang)) {
$where2 = array("tipo" => $tipo, "sigla_idioma" => $lang);
$db_tex = $base->seleciona('textos', $where2, null);
$up_where = json_encode($where2);
if ($db_tex) {
$db_tex = $db_tex;
} else {
$db_idiom = $base->seleciona('idiomas', array('sigla' => $lang, "status" => 1), null);
if ($db_idiom) {
$base->inserir('textos', array('sigla_idioma' => $lang, "tipo" => $tipo));
$db_tex = $base->seleciona('textos', $where2, null);
$up_where = json_encode($where2);
} else {
$db_tex = $base->seleciona('textos', $where1, null);
$up_where = json_encode($where1);
}
}
}
$ln = $db_tex[0];
}
}
} else {
$tipo = false;
}
if (!empty($ln)) {
示例2: unset
if (isset($poste["img_atual"])) {
unset($poste["img_atual"]);
}
if (!empty($_FILES["foto"]["type"])) {
$ext_valida = array("jpeg", "jpg", "png");
$temp = explode(".", $_FILES["foto"]["name"]);
$extencao_arquivo = strtolower(end($temp));
if (($_FILES["foto"]["type"] == "image/png" || $_FILES["foto"]["type"] == "image/jpg" || $_FILES["foto"]["type"] == "image/jpeg") && $_FILES["foto"]["size"] < 100000000 && in_array($extencao_arquivo, $ext_valida)) {
if ($_FILES["foto"]["error"] > 0) {
$resultado['msg'] = "Codigo do erro:" . $_FILES["foto"]["error"];
} else {
$arquivo_tempor = $_FILES['foto']['tmp_name'];
$poste["foto"] = md5(uniqid(time())) . "." . $extencao_arquivo;
if (!file_exists("../../uploads/" . $tabela)) {
mkdir("../../uploads/" . $tabela, 0777, true);
}
$local = "../../uploads/" . $tabela . "/" . $poste["foto"];
move_uploaded_file($arquivo_tempor, $local);
$resultado['img_atual'] = $poste["foto"];
}
} else {
$resultado['msg'] = "erro";
exit;
}
}
$id = $banco->inserir($tabela, $poste);
$resultado['id'] = $id;
}
}
echo json_encode($resultado);
}
示例3: addslashes
<?php
$js = "";
if (!empty($_GET['lang'])) {
$get_lang = addslashes($_GET['lang']);
$js = json_encode(array("sigla_idioma" => $get_lang));
} else {
$get_lang = false;
}
if ($get_lang) {
$disable = "";
$db_trad = $base->seleciona('traducao', array("sigla_idioma" => $get_lang), null);
if ($db_trad == true) {
$dx = $db_trad[0];
$palavas2 = json_decode(stripslashes($dx->json), true);
} else {
$base->inserir('traducao', array("sigla_idioma" => $get_lang, "json" => json_encode($palavas)));
$palavas2 = $palavas;
}
} else {
$palavas2 = $palavas;
$disable = "disabled";
}
?>
<br>
<br>
<ul id="traducao" class="row">
<?php
foreach ($palavas as $ide => $n) {
echo "<li id='" . $ide . "' class='col-lg-6'><pre class='alert alert-dismissable alert-success' style='cursor: pointer;' id='" . strtolower($ide) . "' >" . $ide . "</pre><br>";
echo "<span data-togle='" . strtolower($ide) . "'>";
示例4: adiciona_ao_get
<a href="<?php
echo adiciona_ao_get(array('exe' => 'lista'), array('id' => ''));
?>
" class="btn btn-default"><i class="glyphicon glyphicon-list"></i></a>
</div>
<br>
<?php
if ($execulta == 'novo') {
if (NIVEL_USUARIO == 5) {
$arry_dados = array();
if (!empty($_POST)) {
$arry_dados['nome'] = isset($_POST['nome']) ? addslashes($_POST['nome']) : "";
$arry_dados['login'] = isset($_POST['login']) ? addslashes($_POST['login']) : "";
$arry_dados['senha'] = isset($_POST['senha']) ? md5(addslashes($_POST['senha'])) : "";
$insert = $base->inserir($tabela, $arry_dados);
if ($insert) {
?>
<script>window.location = "index.php<?php
echo adiciona_ao_get(array('exe' => 'lista'));
?>
";</script>
<?php
}
}
?>
<form action="" method="POST">
<h1>Novo usuario</h1>
<div class="col-lg-6">