当前位置: 首页>>代码示例>>PHP>>正文


PHP Documento::setDoc_assunto方法代码示例

本文整理汇总了PHP中Documento::setDoc_assunto方法的典型用法代码示例。如果您正苦于以下问题:PHP Documento::setDoc_assunto方法的具体用法?PHP Documento::setDoc_assunto怎么用?PHP Documento::setDoc_assunto使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Documento的用法示例。


在下文中一共展示了Documento::setDoc_assunto方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: DocumentoController

include_once $path['controller'] . 'DocumentoEnvioController.php';
include_once $path['controller'] . 'DocumentoRetornoController.php';
include_once $path['beans'] . 'Documento.php';
include_once $path['beans'] . 'DocumentoEnvio.php';
include_once $path['beans'] . 'DocumentoRetorno.php';
include_once $path['funcao'] . 'DatasFuncao.php';
$documentosController = new DocumentoController();
$documentosEnvioController = new DocumentoEnvioController();
$maxSize = 30000000;
//Tamanho máximo de arquivo 30Mb
switch ($_REQUEST['acao']) {
    case 'postDocumento':
        $assunto = $_REQUEST['assunto'];
        $descricao = $_REQUEST['descricao'];
        $documento = new Documento();
        $documento->setDoc_assunto(utf8_decode($assunto));
        $documento->setDoc_descricao(utf8_decode($descricao));
        $nomeArquivo = "_" . md5(uniqid(rand(), true)) . '.' . pathinfo($_FILES['arquivo']['name'], PATHINFO_EXTENSION);
        $arquivo_temporario = $_FILES["arquivo"]["tmp_name"];
        $local = $path['documentos'];
        if (filesize($arquivo_temporario) > $maxSize) {
            $_SESSION['cadastro'] = "excedeu";
        } else {
            move_uploaded_file($arquivo_temporario, $local . $nomeImage);
            $arquivo = $local . $nomeImage;
        }
        if (!$_SESSION['cadastro'] == "excedeu") {
            $documento->setDoc_documento("arquivos_galeria/" . $nomeImage);
            $result = $documentosController->insertDocumentos($documento);
            echo json_encode($result);
            $_SESSION['cadastro'] = "ok";
开发者ID:amorimlima,项目名称:Hospital,代码行数:31,代码来源:DocumentosAjax_treta.php

示例2: EscolaController

include_once $path['controller'] . 'DocumentoEnvioController.php';
include_once $path['controller'] . 'DocumentoRetornoController.php';
include_once $path['controller'] . 'DocumentoDestinatarioController.php';
include_once $path['funcao'] . 'DatasFuncao.php';
$escolaController = new EscolaController();
$documentosController = new DocumentoController();
$documentoEnvioController = new DocumentoEnvioController();
$documentoRetornoController = new DocumentoRetornoController();
$documentoDestinatarioController = new DocumentoDestinatarioController();
$maxSize = 30000000;
//Tamanho máximo de arquivo 30Mb
switch ($_REQUEST['acao']) {
    case 'postDocumento':
        $_SESSION["cadastro"] = "";
        $documento = new Documento();
        $documento->setDoc_assunto($_REQUEST['assunto']);
        $documento->setDoc_descricao($_REQUEST['descricao']);
        $nomeArquivo = "_" . md5(uniqid(rand(), true)) . '.' . pathinfo($_FILES['arquivo']['name'], PATHINFO_EXTENSION);
        $arquivo_temporario = $_FILES["arquivo"]["tmp_name"];
        $local = $path['documentos'];
        if (filesize($arquivo_temporario) > $maxSize) {
            $_SESSION['cadastro'] = "excedeu";
        } else {
            move_uploaded_file($arquivo_temporario, $local . $nomeArquivo);
            $arquivo = $local . $nomeArquivo;
        }
        if (!$_SESSION['cadastro'] == "excedeu") {
            $documento->setDoc_arquivo("documentos/" . $nomeArquivo);
            $result = $documentosController->insertDocumentos($documento);
            $_SESSION['cadastro'] = "ok";
            echo $result;
开发者ID:amorimlima,项目名称:Hospital,代码行数:31,代码来源:DocumentosAjax.php

示例3: getEnviados

 public function getEnviados()
 {
     $sql = "select distinct doc.* from documento doc ";
     $sql .= "join documento_envio doe on doe.doe_documento = doc.doc_id;";
     $retorno = [];
     $result = $this->retrieve($sql);
     if ($result) {
         while ($qr = mysqli_fetch_assoc($result)) {
             $doc = new Documento();
             $doc->setDoc_id($qr["doc_id"]);
             $doc->setDoc_assunto($qr["doc_assunto"]);
             $doc->setDoc_descricao($qr["doc_descricao"]);
             $doc->setDoc_arquivo($qr["doc_arquivo"]);
             array_push($retorno, $doc);
         }
     } else {
         $retorno = 0;
     }
     return $retorno;
 }
开发者ID:amorimlima,项目名称:Hospital,代码行数:20,代码来源:DocumentoDAO.php


注:本文中的Documento::setDoc_assunto方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。